diff options
| author | Charles Harris <charlesr.harris@gmail.com> | 2023-05-04 22:58:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-04 22:58:59 -0400 |
| commit | 2477185fa49f002e9c5290bd6bff96785ccb8e78 (patch) | |
| tree | f3923bba33312e9a74c71d454ec232fe91f1ee90 /.github/workflows | |
| parent | 638b464ad71686bd072f74d29d5df6be32bf7b1c (diff) | |
| parent | e84e8109582e072e14b4de9700e35797392af3a5 (diff) | |
| download | numpy-2477185fa49f002e9c5290bd6bff96785ccb8e78.tar.gz | |
Merge pull request #23714 from r-devulap/enable-ci
CI: Enable CI to build with gcc-12
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build_test.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index d34b43651..759ebca01 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -431,7 +431,6 @@ jobs: run: sde -icl -- python runtests.py -n -v -- -k test_simd intel_spr_sde_test: - if: ${{ false }} # disable for now needs: [smoke_test] runs-on: ubuntu-latest steps: @@ -461,6 +460,8 @@ jobs: python -c "import numpy as np; np.show_config()" # Run only a few tests, running everything in an SDE takes a long time # Using pytest directly, unable to use python runtests.py -n -t ... + # Disabled running in the SDE because of an SDE bug - name: Run linalg/ufunc/umath tests run: | - sde -spr -- python -m pytest numpy/core/tests/test_umath* numpy/core/tests/test_ufunc.py numpy/linalg/tests/test_* + python -m pytest numpy/core/tests/test_umath* numpy/core/tests/test_ufunc.py numpy/linalg/tests/test_* + #sde -spr -- python -m pytest numpy/core/tests/test_umath* numpy/core/tests/test_ufunc.py numpy/linalg/tests/test_* |
