parallelize tox-runs somewhat

This commit is contained in:
holger krekel
2019-09-19 12:11:45 +02:00
parent 977e3e08d7
commit 4ef3a091fe
2 changed files with 9 additions and 8 deletions

View File

@@ -42,14 +42,15 @@ if [ -n "$TESTS" ]; then
tox --workdir "$TOXWORKDIR" -e py37
unset DCC_PY_LIVECONFIG
tox --workdir "$TOXWORKDIR" -e lint,py35,py36,auditwheels
tox --workdir "$TOXWORKDIR" -p4 -e lint,py35,py36,doc
tox --workdir "$TOXWORKDIR" -e auditwheels
popd
fi
if [ -n "$DOCS" ]; then
echo -----------------------
echo generating python docs
echo -----------------------
(cd python && tox --workdir "$TOXWORKDIR" -e doc)
fi
# if [ -n "$DOCS" ]; then
# echo -----------------------
# echo generating python docs
# echo -----------------------
# (cd python && tox --workdir "$TOXWORKDIR" -e doc)
# fi