Skip to content

Commit 8d838e1

Browse files
authored
infra: Do not parallelize unit tests in buildspecs (#48)
* do not parallelize unit tests in release * do not parallelize unit tests in PR
1 parent 23c1f7c commit 8d838e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

buildspec-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ phases:
1717
- tox -e black-check
1818

1919
# run unit tests
20-
- tox -e py27,py36,py37 --parallel all -- test/unit
20+
- tox -e py27,py36,py37 -- test/unit
2121

2222
# build dummy container
2323
- python3 setup.py sdist

buildspec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ phases:
1515
- tox -e twine
1616

1717
# run unit tests
18-
- tox -e py27,py36,py37 --parallel all -- test/unit
18+
- tox -e py27,py36,py37 -- test/unit
1919

2020
# build dummy container
2121
- python setup.py sdist

0 commit comments

Comments
 (0)