We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae54efa commit 840a2ffCopy full SHA for 840a2ff
1 file changed
.github/workflows/test_old_cpu.yml
@@ -54,12 +54,10 @@ jobs:
54
# For Sandy Bridge (x86-64-v2), we need to disable FMA code paths
55
# since FMA instructions are not available on that microarchitecture
56
if [ "${{ matrix.cpu[0] }}" = "snb" ]; then
57
- pip install . --no-build-isolation -v -Csetup-args=-Ddisable_fma=true
+ pip install .[test] --no-build-isolation -v -Csetup-args=-Ddisable_fma=true
58
else
59
- pip install . --no-build-isolation -v
+ pip install .[test] --no-build-isolation -v
60
fi
61
- # Install the test dependencies
62
- pip install .[test]
63
64
- name: Test import on ${{ matrix.cpu[1] }}
65
run: |
0 commit comments