Skip to content

Commit 62ae2d4

Browse files
committed
Address review
1 parent 4b421e8 commit 62ae2d4

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ jobs:
430430
- name: Display build info
431431
run: make pythoninfo
432432
- name: Tests
433-
run: xvfb-run make test
433+
run: xvfb-run make test TESTOPTS="-ugui"
434434

435435
build_tsan:
436436
name: 'Thread sanitizer'

.github/workflows/reusable-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,4 @@ jobs:
6969
--fail-on-improvement
7070
--path-prefix="./"
7171
- name: Tests
72-
run: make test
72+
run: make test TESTOPTS="-ugui"

.github/workflows/reusable-ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ jobs:
105105
run: sudo mount $CPYTHON_RO_SRCDIR -oremount,rw
106106
- name: Tests
107107
working-directory: ${{ env.CPYTHON_BUILDDIR }}
108-
run: xvfb-run make test
108+
run: xvfb-run make test TESTOPTS="-ugui"

.github/workflows/reusable-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ jobs:
4343
run: >-
4444
.\PCbuild\rt.bat
4545
-p ${{ inputs.arch }}
46-
-d -q --fast-ci
46+
-d -q --fast-ci -ugui
4747
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}

Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2097,7 +2097,7 @@ cleantest: all
20972097
# Similar to buildbottest, but use --fast-ci option, instead of --slow-ci.
20982098
.PHONY: test
20992099
test: all
2100-
$(TESTRUNNER) --fast-ci --timeout=$(TESTTIMEOUT) $(TESTOPTS)
2100+
$(TESTRUNNER) --fast-ci -u-gui --timeout=$(TESTTIMEOUT) $(TESTOPTS)
21012101

21022102
# Run the test suite for both architectures in a Universal build on OSX.
21032103
# Must be run on an Intel box.

PCbuild/rt.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ set pyname=python
3434
set suffix=
3535
set qmode=
3636
set dashO=
37-
set regrtestargs=--fast-ci
37+
set regrtestargs=--fast-ci -u-gui
3838
set exe=
3939

4040
:CheckOpts

0 commit comments

Comments
 (0)