refine python test run further

This commit is contained in:
holger krekel
2019-09-19 11:37:26 +02:00
parent bb23e1487d
commit 977e3e08d7
2 changed files with 5 additions and 5 deletions

View File

@@ -36,13 +36,13 @@ if [ -n "$TESTS" ]; then
rm -rf src/deltachat/__pycache__
export PYTHONDONTWRITEBYTECODE=1
# run tox -- the cricle-ci project envvar setting DCC_PY_LIVECONFIG
# triggers running of "liveconfig" tests but for speed reasons
# run tox. The circle-ci project env-var-setting DCC_PY_LIVECONFIG
# allows running of "liveconfig" tests but for speed reasons
# we run them only for the highest python version we support
tox --workdir "$TOXWORKDIR" -e py37 -- -k "Online"
tox --workdir "$TOXWORKDIR" -e py37
unset DCC_PY_LIVECONFIG
tox --workdir "$TOXWORKDIR" -e lint,py35,py36,py37,auditwheels -- -k "not Online"
tox --workdir "$TOXWORKDIR" -e lint,py35,py36,auditwheels
popd
fi