File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 64
64
- name : Testing docstring validation script
65
65
run : |
66
66
source activate pandas-dev
67
- pytest --capture=no --strict scripts
67
+ pytest --capture=no --strict-markers scripts
68
68
if : always()
69
69
70
70
- name : Running benchmarks
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
20
20
XVFB=" xvfb-run "
21
21
fi
22
22
23
- PYTEST_CMD=" ${XVFB} pytest -m \" $PATTERN \" -n $PYTEST_WORKERS --dist=loadfile -s --strict --durations=30 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas"
23
+ PYTEST_CMD=" ${XVFB} pytest -m \" $PATTERN \" -n $PYTEST_WORKERS --dist=loadfile -s --strict-markers --durations=30 --junitxml=test-data.xml $TEST_ARGS $COVERAGE pandas"
24
24
25
25
if [[ $( uname) != " Linux" && $( uname) != " Darwin" ]]; then
26
26
# GH#37455 windows py38 build appears to be running out of memory
Original file line number Diff line number Diff line change 1
1
:: test on windows
2
2
set PYTHONHASHSEED = 314159265
3
- pytest --skip-slow --skip-network --skip-db -m " not single" -n 4 -r sXX --strict pandas
3
+ pytest --skip-slow --skip-network --skip-db -m " not single" -n 4 -r sXX --strict-markers pandas
Original file line number Diff line number Diff line change 5
5
# https://github.com/pytest-dev/pytest/issues/1075
6
6
export PYTHONHASHSEED=$( python -c ' import random; print(random.randint(1, 4294967295))' )
7
7
8
- pytest pandas --skip-slow --skip-network --skip-db -m " not single" -n 4 -r sxX --strict " $@ "
8
+ pytest pandas --skip-slow --skip-network --skip-db -m " not single" -n 4 -r sxX --strict-markers " $@ "
You can’t perform that action at this time.
0 commit comments