diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-08-18 07:48:37 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2019-08-18 07:48:37 -0600 |
commit | ca6883c4598ee27985e19103ba3bffd72e5e69f6 (patch) | |
tree | de90b22ad7716a64b92042e1913cadd0931d53d1 /tools | |
parent | bb257bd058997c903c454f17402f553664159c82 (diff) | |
download | numpy-ca6883c4598ee27985e19103ba3bffd72e5e69f6.tar.gz |
TST: Disable `--durations` flag for pytest.
This is (hopefully) temporary. Current versions of pytest abort
when this flag is passed and the tests run with python3.6-dbg.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/travis-before-install.sh | 2 | ||||
-rwxr-xr-x | tools/travis-test.sh | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tools/travis-before-install.sh b/tools/travis-before-install.sh index c0f8ef807..448273db0 100755 --- a/tools/travis-before-install.sh +++ b/tools/travis-before-install.sh @@ -36,6 +36,6 @@ fi pip install --upgrade pip setuptools -pip install pytz cython pytest==5.0.1 +pip install pytz cython pytest if [ -n "$USE_ASV" ]; then pip install asv; fi popd diff --git a/tools/travis-test.sh b/tools/travis-test.sh index d056ac69c..1e7e09525 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -90,7 +90,9 @@ run_test() export PYTHONWARNINGS="ignore::DeprecationWarning:virtualenv" $PYTHON ../runtests.py -n -v --durations 10 --mode=full $COVERAGE_FLAG else - $PYTHON ../runtests.py -n -v --durations 10 + # disable --durations temporarily, pytest currently aborts + # when that is used with python3.6-dbg + $PYTHON ../runtests.py -n -v # --durations 10 fi if [ -n "$RUN_COVERAGE" ]; then |