File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 6464 - name : Testing docstring validation script
6565 run : |
6666 source activate pandas-dev
67- pytest --capture=no --strict scripts
67+ pytest --capture=no --strict-markers scripts
6868 if : always()
6969
7070 - name : Running benchmarks
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if [[ $(uname) == "Linux" && -z $DISPLAY ]]; then
2020 XVFB=" xvfb-run "
2121fi
2222
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"
2424
2525if [[ $( uname) != " Linux" && $( uname) != " Darwin" ]]; then
2626 # GH#37455 windows py38 build appears to be running out of memory
Original file line number Diff line number Diff line change 11:: test on windows
22set 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 55# https://github.com/pytest-dev/pytest/issues/1075
66export PYTHONHASHSEED=$( python -c ' import random; print(random.randint(1, 4294967295))' )
77
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