diff options
| author | Raghuveer Devulapalli <raghuveer.devulapalli@intel.com> | 2023-03-31 10:27:50 -0700 |
|---|---|---|
| committer | Raghuveer Devulapalli <raghuveer.devulapalli@intel.com> | 2023-03-31 10:27:50 -0700 |
| commit | 7009a8a6095b800d72dc2b449ff1fa2eb0b1cae2 (patch) | |
| tree | b8f077d16845ec97ab17d71ab97e6e77b38f0c9f /.github/workflows | |
| parent | 8829ac07bfbfb48637f39aba04ea43d52000d4ce (diff) | |
| download | numpy-7009a8a6095b800d72dc2b449ff1fa2eb0b1cae2.tar.gz | |
CI: Split install step and run only a few tests in SDE
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build_test.yml | 6 |
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_* |
