Skip to content

Commit e21c430

Browse files
committed
Run each step of test individually
1 parent 82b4bd3 commit e21c430

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/conda-package.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,5 +305,8 @@ jobs:
305305
306306
- name: Run tests
307307
shell: cmd /C CALL {0}
308-
run: >-
309-
conda activate mkl_umath_test && python -c "import mkl_umath, numpy as np; mkl_umath.use_in_numpy(); np.sin(np.linspace(0, 1, num=10**6));"
308+
run: |
309+
python -c "import mkl_umath;"
310+
python -c "import_mkl_umath; import numpy as np;"
311+
python -c "import_mkl_umath; import numpy as np; mkl_umath.use_in_numpy();"
312+
python -c "import_mkl_umath; import numpy as np; mkl_umath.use_in_numpy(); np.sin(np.linspace(0, 1, num=10**6));"

0 commit comments

Comments
 (0)