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 20
20
if [ " $BUILD_TEST " ]; then
21
21
echo " We are not running pytest as this is simply a build test."
22
22
elif [ " $COVERAGE " ]; then
23
- echo pytest -s -n 2 -m " not single" --cov=pandas --cov-append --cov-report xml:/tmp/pytest.xml $TEST_ARGS pandas
24
- pytest -s -n 2 -m " not single" --cov=pandas --cov-append --cov-report xml:/tmp/pytest.xml $TEST_ARGS pandas
23
+ echo pytest -s -n 4 -m " not single" --cov=pandas --cov-append --cov-report xml:/tmp/pytest.xml $TEST_ARGS pandas
24
+ pytest -s -n 4 -m " not single" --cov=pandas --cov-append --cov-report xml:/tmp/pytest.xml $TEST_ARGS pandas
25
25
else
26
- echo pytest -n 2 -m " not single" $TEST_ARGS pandas
27
- pytest -n 2 -m " not single" $TEST_ARGS pandas # TODO: doctest
26
+ echo pytest -n 4 -m " not single" $TEST_ARGS pandas
27
+ pytest -n 4 -m " not single" $TEST_ARGS pandas # TODO: doctest
28
28
fi
29
29
30
30
RET=" $? "
You can’t perform that action at this time.
0 commit comments