We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 871f900 commit b782ca4Copy full SHA for b782ca4
.github/workflows/publish_testpypi.yml
@@ -40,18 +40,17 @@ jobs:
40
41
- name: Test
42
if: ${{ ! runner.debug && matrix.os != 'ubuntu-latest' }}
43
- run: uv run poe test
+ run: uv run --no-sync poe test
44
timeout-minutes: 7
45
46
- name: Test (Linux)
47
if: ${{ ! runner.debug && matrix.os == 'ubuntu-latest' }}
48
- run: xvfb-run uv run poe test
+ run: xvfb-run uv run --no-sync poe test
49
50
51
- name: Test (Debug)
52
if: runner.debug
53
- run: uv run poe debug-test
54
- - run: uv run --no-sync poe test
+ run: uv run --no-sync poe debug-test
55
# different versions of chrome
56
57
# REMEMBER TO GO BACK ONE COMMIT ON OTHER BRANCH
0 commit comments