Skip to content

Commit 7351341

Browse files
authored
Merge pull request numpy#24268 from r-devulap/ci-sde-spr
CI: Enable running intel_spr_sde_test with Intel SDE
2 parents 7e806a1 + f989273 commit 7351341

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/build_test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ jobs:
423423
python-version: ${{ env.PYTHON_VERSION }}
424424
- name: Install Intel SDE
425425
run: |
426-
curl -o /tmp/sde.tar.xz https://downloadmirror.intel.com/751535/sde-external-9.14.0-2022-10-25-lin.tar.xz
426+
curl -o /tmp/sde.tar.xz https://downloadmirror.intel.com/784319/sde-external-9.24.0-2023-07-13-lin.tar.xz
427427
mkdir /tmp/sde && tar -xvf /tmp/sde.tar.xz -C /tmp/sde/
428428
sudo mv /tmp/sde/* /opt/sde && sudo ln -s /opt/sde/sde64 /usr/bin/sde
429429
- name: Install dependencies
@@ -440,8 +440,6 @@ jobs:
440440
python -c "import numpy as np; np.show_config()"
441441
# Run only a few tests, running everything in an SDE takes a long time
442442
# Using pytest directly, unable to use python runtests.py -n -t ...
443-
# Disabled running in the SDE because of an SDE bug
444443
- name: Run linalg/ufunc/umath tests
445444
run: |
446-
python -m pytest numpy/core/tests/test_umath* numpy/core/tests/test_ufunc.py numpy/linalg/tests/test_*
447-
#sde -spr -- python -m pytest numpy/core/tests/test_umath* numpy/core/tests/test_ufunc.py numpy/linalg/tests/test_*
445+
sde -spr -- python -m pytest numpy/core/tests/test_umath* numpy/core/tests/test_ufunc.py numpy/linalg/tests/test_*

0 commit comments

Comments
 (0)