Skip to content

Commit 06405c8

Browse files
committed
disabling parallel runs
1 parent 1ab42b7 commit 06405c8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
marks="not production and not uses_test_server"
124124
fi
125125
126-
pytest --durations=20 --dist load -sv $codecov -o log_cli=true -m "$marks"
126+
pytest -n 0 --durations=20 --dist load -sv $codecov -o log_cli=true -m "$marks"
127127
128128
- name: Run tests on Ubuntu Production
129129
if: matrix.os == 'ubuntu-latest'
@@ -138,12 +138,12 @@ jobs:
138138
marks="production and not uses_test_server"
139139
fi
140140
141-
pytest --durations=20 --dist load -sv $codecov -o log_cli=true -m "$marks"
141+
pytest -n 0 --durations=20 --dist load -sv $codecov -o log_cli=true -m "$marks"
142142
143143
- name: Run tests on Windows
144144
if: matrix.os == 'windows-latest'
145145
run: | # we need a separate step because of the bash-specific if-statement in the previous one.
146-
pytest --durations=20 --dist load -sv --reruns 5 --reruns-delay 1 -m "not uses_test_server"
146+
pytest -n 0 --durations=20 --dist load -sv --reruns 5 --reruns-delay 1 -m "not uses_test_server"
147147
148148
- name: Cleanup Docker setup
149149
if: always()

0 commit comments

Comments
 (0)