Skip to content

Commit

Permalink
DEBUG: try using mamba activate
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjereddy committed Oct 5, 2024
1 parent 7606ca7 commit 4671297
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/windows_intel_oneAPI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,21 @@ jobs:
call "C:\Program Files (x86)\Intel\oneAPI\setvars.bat"
set FC=ifx
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
C:\Users\runneradmin\miniconda3\envs\test\python dev.py build -C-Duse-pythran=false -C--vsenv
mamba activate test
python dev.py build -C-Duse-pythran=false -C--vsenv
shell: cmd

# "import scipy; scipy.test();" fails because
# scipy/sparse/linalg/_eigen/arpack crashes.
# Reference - https://github.com/scipy/scipy/issues/20728
- name: Test scipy.datasets
run: C:\Users\runneradmin\miniconda3\envs\test\python dev.py test -s datasets
run: |
mamba activate test
python dev.py test -s datasets
shell: cmd

- name: Test scipy.misc
run: C:\Users\runneradmin\miniconda3\envs\test\python dev.py test -s misc
run: |
mamba activate test
python dev.py test -s misc
shell: cmd

0 comments on commit 4671297

Please sign in to comment.