1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Siu Kwan Lam <1929845+sklam@users.noreply.github.com>
Origin: https://github.com/numba/numba/pull/8545
Date: Tue, 15 Nov 2022 20:33:40 -0600
Subject: Skip testing by git diff for now
---
buildscripts/incremental/test.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/buildscripts/incremental/test.sh b/buildscripts/incremental/test.sh
index a3e32bd..47846e2 100755
--- a/buildscripts/incremental/test.sh
+++ b/buildscripts/incremental/test.sh
@@ -108,8 +108,8 @@ fi
# First check that the test discovery works
python -m numba.tests.test_runtests
-# Now run tests based on the changes identified via git
-NUMBA_ENABLE_CUDASIM=1 $SEGVCATCH python -m numba.runtests -b -v -g -m $TEST_NPROCS -- numba.tests
+# # Now run tests based on the changes identified via git
+# NUMBA_ENABLE_CUDASIM=1 $SEGVCATCH python -m numba.runtests -b -v -g -m $TEST_NPROCS -- numba.tests
# List the tests found
echo "INFO: All discovered tests:"
|