Skip to content

Commit a999b16

Browse files
authored
change: stop CI unit test code checks from running in parallel (#1066)
There seems to be a ~5% failure rate when the code checks are run in parallel. This change adds a minute to the unit tests running in the CI pipeline, but avoids the confusing failure.
1 parent 91ea028 commit a999b16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buildspec-unittests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ phases:
77
- TOX_PARALLEL_NO_SPINNER=1
88
- PY_COLORS=0
99
- start_time=`date +%s`
10-
- tox -e flake8,pylint,twine,black-check --parallel all
10+
- tox -e flake8,pylint,twine,black-check
1111
- ./ci-scripts/displaytime.sh 'flake8,pylint,twine,black-check' $start_time
1212

1313
- start_time=`date +%s`

0 commit comments

Comments
 (0)