Skip to content

Commit d163de7

Browse files
nicku33jreback
authored andcommitted
BLD Added --strict and -r sxX to test scripts (#18598)
1 parent d270bbb commit d163de7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
:: test on windows
22

3-
pytest --strict --skip-slow --skip-network pandas -n 2 %*
3+
pytest --skip-slow --skip-network pandas -n 2 -r sxX --strict %*

test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
command -v coverage >/dev/null && coverage erase
33
command -v python-coverage >/dev/null && python-coverage erase
4-
pytest pandas --cov=pandas
4+
pytest pandas --cov=pandas -r sxX --strict

test_fast.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
:: test on windows
22
set PYTHONHASHSEED=314159265
3-
pytest --skip-slow --skip-network -m "not single" -n 4 pandas
3+
pytest --skip-slow --skip-network -m "not single" -n 4 -r sXX --strict pandas

test_fast.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# https://github.com/pytest-dev/pytest/issues/1075
66
export PYTHONHASHSEED=$(python -c 'import random; print(random.randint(1, 4294967295))')
77

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

0 commit comments

Comments
 (0)