Skip to content

Commit

Permalink
Don't use pytest -rw now that pytest-warnings is builtin.
Browse files Browse the repository at this point in the history
The `-rw` (included in `-rawR`) option to pytest was added to display
warnings back when we used pytest-warnings, but has now become
unnecessary as pytest now displays warnings by default.  Remove it (i.e.
use `-raR`) instead to avoid some head-scratching.
  • Loading branch information
anntzer committed Jul 18, 2018
1 parent 4769f7b commit 209a690
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ environment:

global:
PYTHONIOENCODING: UTF-8
PYTEST_ARGS: -rawR --numprocesses=auto --timeout=300 --durations=25
PYTEST_ARGS: -raR --numprocesses=auto --timeout=300 --durations=25
--cov-report= --cov=lib -m "not network"

matrix:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ env:
- NPROC=2
- OPENBLAS_NUM_THREADS=1
- PYTHONFAULTHANDLER=1
- PYTEST_ADDOPTS="-rawR --maxfail=50 --timeout=300 --durations=25 --cov-report= --cov=lib -n $NPROC"
- PYTEST_ADDOPTS="-raR --maxfail=50 --timeout=300 --durations=25 --cov-report= --cov=lib -n $NPROC"
- RUN_FLAKE8=

matrix:
Expand Down

0 comments on commit 209a690

Please sign in to comment.