Skip to content

Commit

Permalink
TST: Do not ignore yield warnings in ci testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
charris committed Apr 8, 2018
1 parent c1490e8 commit 313df46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,7 @@ build_script:
}
test_script:
#- if [%USE_PYTEST%]==[true] pytest -n3 --junitxml=junit-results.xml
#- if [%USE_PYTEST%]==[] python runtests.py -v -n -m %TEST_MODE%
python runtests.py -v -n -m %TEST_MODE% -- --disable-pytest-warnings
python runtests.py -v -n -m %TEST_MODE%

after_build:
# Remove old or huge cache files to hopefully not exceed the 1GB cache limit.
Expand Down
6 changes: 2 additions & 4 deletions tools/travis-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,9 @@ run_test()
"import os; import numpy; print(os.path.dirname(numpy.__file__))")
export PYTHONWARNINGS=default
if [ -n "$RUN_FULL_TESTS" ]; then
$PYTHON ../tools/test-installed-numpy.py -v --mode=full -- \
--disable-pytest-warnings
$PYTHON ../tools/test-installed-numpy.py -v --mode=full
else
$PYTHON ../tools/test-installed-numpy.py -v -- \
--disable-pytest-warnings
$PYTHON ../tools/test-installed-numpy.py -v
fi
if [ -n "$USE_ASV" ]; then
pushd ../benchmarks
Expand Down

0 comments on commit 313df46

Please sign in to comment.