Skip to content

Commit 0051a49

Browse files
committed
try n=4
1 parent ac131e8 commit 0051a49

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ci/script_multi.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ fi
2020
if [ "$BUILD_TEST" ]; then
2121
echo "We are not running pytest as this is simply a build test."
2222
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
2525
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
2828
fi
2929

3030
RET="$?"

0 commit comments

Comments
 (0)