Skip to content

Commit

Permalink
BLD Added --strict and -r sxX to test scripts (pandas-dev#18598)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicku33 authored and jreback committed Dec 1, 2017
1 parent d270bbb commit d163de7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:: test on windows

pytest --strict --skip-slow --skip-network pandas -n 2 %*
pytest --skip-slow --skip-network pandas -n 2 -r sxX --strict %*
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
command -v coverage >/dev/null && coverage erase
command -v python-coverage >/dev/null && python-coverage erase
pytest pandas --cov=pandas
pytest pandas --cov=pandas -r sxX --strict
2 changes: 1 addition & 1 deletion test_fast.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:: test on windows
set PYTHONHASHSEED=314159265
pytest --skip-slow --skip-network -m "not single" -n 4 pandas
pytest --skip-slow --skip-network -m "not single" -n 4 -r sXX --strict pandas
2 changes: 1 addition & 1 deletion test_fast.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
# https://github.com/pytest-dev/pytest/issues/1075
export PYTHONHASHSEED=$(python -c 'import random; print(random.randint(1, 4294967295))')

pytest pandas --skip-slow --skip-network -m "not single" -n 4 "$@"
pytest pandas --skip-slow --skip-network -m "not single" -n 4 -r sxX --strict "$@"

0 comments on commit d163de7

Please sign in to comment.