split qr tests

This commit is contained in:
holger krekel
2019-09-19 19:38:19 +02:00
parent 030aec7373
commit bf692b5739

View File

@@ -40,7 +40,11 @@ if [ -n "$TESTS" ]; then
# allows running of "liveconfig" tests but for speed reasons # allows running of "liveconfig" tests but for speed reasons
# we run them only for the highest python version we support # we run them only for the highest python version we support
tox --workdir "$TOXWORKDIR" -e py37 # we split out qr-tests run to minimize likelyness of flaky tests
# (some qr tests are pretty heavy in terms of send/received
# messages and rust's imap code likely has concurrency problems)
tox --workdir "$TOXWORKDIR" -e py37 -- -k "not qr"
tox --workdir "$TOXWORKDIR" -e py37 -- -k "qr"
unset DCC_PY_LIVECONFIG unset DCC_PY_LIVECONFIG
tox --workdir "$TOXWORKDIR" -p4 -e lint,py35,py36,doc tox --workdir "$TOXWORKDIR" -p4 -e lint,py35,py36,doc
tox --workdir "$TOXWORKDIR" -e auditwheels tox --workdir "$TOXWORKDIR" -e auditwheels