File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,17 +27,17 @@ if [ "$DOC" ]; then
27
27
echo " We are not running pytest as this is a doc-build"
28
28
29
29
elif [ " $COVERAGE " ]; then
30
- echo pytest -s -n 2 -m " not single" --cov=pandas --cov-report xml:/tmp/cov-multiple.xml --junitxml=/tmp/multiple.xml --strict $TEST_ARGS pandas
31
- pytest -s -n 2 -m " not single" --cov=pandas --cov-report xml:/tmp/cov-multiple.xml --junitxml=/tmp/multiple.xml --strict $TEST_ARGS pandas
30
+ echo pytest -s -n 2 -m " not single" --cov=pandas --cov-report xml:/tmp/cov-multiple.xml --dist=loadscope -- junitxml=/tmp/multiple.xml --strict $TEST_ARGS pandas
31
+ pytest -s -n 2 -m " not single" --cov=pandas --cov-report xml:/tmp/cov-multiple.xml --dist=loadscope -- junitxml=/tmp/multiple.xml --strict $TEST_ARGS pandas
32
32
33
33
elif [ " $SLOW " ]; then
34
34
TEST_ARGS=" --only-slow --skip-network"
35
35
echo pytest -r xX -m " not single and slow" -v --junitxml=/tmp/multiple.xml --strict $TEST_ARGS pandas
36
36
pytest -r xX -m " not single and slow" -v --junitxml=/tmp/multiple.xml --strict $TEST_ARGS pandas
37
37
38
38
else
39
- echo pytest -n 2 -r xX -m " not single" --junitxml=/tmp/multiple.xml --strict $TEST_ARGS pandas
40
- pytest -n 2 -r xX -m " not single" --junitxml=/tmp/multiple.xml --strict $TEST_ARGS pandas # TODO: doctest
39
+ echo pytest -n 2 -r xX -m " not single" --junitxml=/tmp/multiple.xml --dist=loadscope -- strict $TEST_ARGS pandas
40
+ pytest -n 2 -r xX -m " not single" --junitxml=/tmp/multiple.xml --dist=loadscope -- strict $TEST_ARGS pandas # TODO: doctest
41
41
42
42
fi
43
43
You can’t perform that action at this time.
0 commit comments