Skip to content

Commit 501cc36

Browse files
ci: run integration tests serially
Integration tests are incredibly flakey currently. Perhaps this is related to the parallel execution of the tests. Certainly the fact that the tests are randomly distributed across threads doesn't help with figuring out what works and what doesn't.
1 parent 50b42d0 commit 501cc36

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ envdir = {toxworkdir}/py3
6363
commands =
6464
pip install urllib3<2
6565
pip install pylxd
66-
python -m pytest --tb native -ra -v -n auto -k 'integration' -m 'not serial' {posargs}
66+
python -m pytest --tb native -ra -v -n 1 -k 'integration' -m 'not serial' {posargs}
6767

6868
[testenv:unit]
6969
envdir = {toxworkdir}/py3

0 commit comments

Comments
 (0)