Skip to content

Commit e4cc68c

Browse files
committed
ci.sh: switch to -r a to fix 3.8-dev error
Using '-ra' with Python 3.8-dev fails on `pytest: error: unrecognized arguments: -ra`. This seems related to https://bugs.python.org/issue26967.
1 parent eeabd76 commit e4cc68c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ else
120120

121121
INSTALLDIR=$(python -c "import os, trio; print(os.path.dirname(trio.__file__))")
122122
cp ../setup.cfg $INSTALLDIR
123-
pytest -W error -ra --junitxml=../test-results.xml --run-slow ${INSTALLDIR} --cov="$INSTALLDIR" --cov-config=../.coveragerc --verbose
123+
pytest -W error -r a --junitxml=../test-results.xml --run-slow ${INSTALLDIR} --cov="$INSTALLDIR" --cov-config=../.coveragerc --verbose
124124

125125
# Disable coverage on 3.8 until we run 3.8 on Windows CI too
126126
# https://github.com/python-trio/trio/pull/784#issuecomment-446438407

0 commit comments

Comments
 (0)