diff options
author | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2022-05-26 19:25:37 +0200 |
---|---|---|
committer | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2022-05-26 19:25:37 +0200 |
commit | 2a3b11cc3e84c7f75b4806fc3bac5c4515216bb3 (patch) | |
tree | d9d0d6161b68d6827af7fb96d57105f7dfc9ec55 /.github | |
parent | 938637664b9b67fae3c5e5a318f254ca045b1fe9 (diff) | |
download | numpy-2a3b11cc3e84c7f75b4806fc3bac5c4515216bb3.tar.gz |
TST: Install `test_requirements` during the container build stage
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_test.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 5e8f289e1..81158919d 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -276,12 +276,13 @@ jobs: git config --global --add safe.directory /numpy cd /numpy && python3 setup.py install + python3 pip3 install -r ./test_requirements.txt " docker commit the_build the_build - name: Run SIMD Tests run: | docker run --rm --interactive -v $(pwd):/numpy the_build /bin/bash -c " - cd /numpy && python3 pip3 install -r ./test_requirements.txt && python3 runtests.py -n -v -- -k test_simd + cd /numpy && python3 runtests.py -n -v -- -k test_simd " sde_simd_avx512_test: |