summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build_test.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml
index f7ea79f2f..2f87b7bf4 100644
--- a/.github/workflows/build_test.yml
+++ b/.github/workflows/build_test.yml
@@ -429,9 +429,11 @@ jobs:
run: |
python -m pip install -r test_requirements.txt
sudo apt install gcc-12 g++-12
- - name: Build
+ - name: Build and install NumPy
run: |
export CC=/usr/bin/gcc-12
export CXX=/usr/bin/g++-12
python setup.py install
- sde -spr -- python runtests.py -n -v
+ # Run only a few tests, running everything in an SDE takes a long time
+ - name: Run linalg/ufunc/umath tests
+ sde -spr -- python runtests.py -t numpy/core/tests/test_umath* numpy/core/tests/test_ufunc.py numpy/linalg/tests/test_*