Skip to content

Commit

Permalink
Drop -j option with no slice
Browse files Browse the repository at this point in the history
This appears to confuse Numba's test suite in 0.59.0. Given it is a
no-op anyways, just drop it. Likely it was leftover when tweaking the
number of tests run before. The random selection of tests already used
should already be sufficient.
  • Loading branch information
jakirkham committed May 19, 2023
1 parent 4adee21 commit bfeef90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipe/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ python -m numba.tests.test_runtests

if [[ "$archstr" == 'aarch64' ]] || [[ "$archstr" == "ppc64le" ]]; then
echo 'Running only a slice of tests'
$SEGVCATCH python -m numba.runtests -b -j --random='0.15' --exclude-tags='long_running' -m $TEST_NPROCS -- numba.tests
$SEGVCATCH python -m numba.runtests -b --random='0.15' --exclude-tags='long_running' -m $TEST_NPROCS -- numba.tests
# Else run the whole test suite
else
echo 'Running all the tests except long_running'
Expand Down

0 comments on commit bfeef90

Please sign in to comment.