File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed
Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 1313 strategy :
1414 fail-fast : false
1515 matrix :
16- os : [ubuntu, macOS, windows]
16+ # os: [ubuntu, macOS, windows]
17+ os : [windows]
1718
1819 steps :
1920 - uses : actions/checkout@v4
@@ -34,10 +35,10 @@ jobs:
3435 shell : pwsh
3536 run : uv sync --extra gui
3637
37- - name : Test with pytest, no GUI tests
38- shell : pwsh
39- run : |
40- uv run pytest -v -rs --ignore=tests/test_gui tests
38+ # - name: Test with pytest, no GUI tests
39+ # shell: pwsh
40+ # run: |
41+ # uv run pytest -v -rs --ignore=tests/test_gui tests
4142
4243 - name : Test with pytest, GUI tests only
4344 shell : pwsh
Original file line number Diff line number Diff line change @@ -70,9 +70,11 @@ def checkBlockingResult(res):
7070 w3 .finished .connect (checkBlockingResult )
7171 w3 .error .connect (assertionOnError )
7272
73- with qtbot .assertNotEmitted (w3 .finished ), \
74- qtbot .assertNotEmitted (w3 .error ), \
75- qtbot .waitSignal (w3 .busyChanged ):
73+ with (
74+ qtbot .assertNotEmitted (w3 .finished ),
75+ qtbot .assertNotEmitted (w3 .error ),
76+ # qtbot.waitSignal(w3.busyChanged),
77+ ):
7678 w3 (0 , True )
7779 assert w3 .busy is True
7880 barr .wait ()
You can’t perform that action at this time.
0 commit comments