File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -280,6 +280,8 @@ jobs:
280
280
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-python-${{ matrix.python }}-
281
281
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-
282
282
283
+ # add intel-openmp as an explicit dependency
284
+ # to avoid it being missed when package version is specified exactly
283
285
- name : Install mkl_umath
284
286
shell : cmd /C CALL {0}
285
287
run : |
@@ -292,7 +294,9 @@ jobs:
292
294
SET PACKAGE_VERSION=%%F
293
295
)
294
296
SET "TEST_DEPENDENCIES=pytest pytest-cov"
295
- conda install -n mkl_umath_test ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %TEST_DEPENDENCIES% python=${{ matrix.python }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
297
+ SET "WORKAROUND_DEPENDENCIES=intel-openmp"
298
+ SET "DEPENDENCIES=%TEST_DEPENDENCIES% %WORKAROUND_DEPENDENCIES%"
299
+ conda install -n mkl_umath_test ${{ env.PACKAGE_NAME }}=%PACKAGE_VERSION% %DEPENDENCIES% python=${{ matrix.python }} -c ${{ env.workdir }}/channel ${{ env.CHANNELS }}
296
300
297
301
- name : Report content of test environment
298
302
shell : cmd /C CALL {0}
You can’t perform that action at this time.
0 commit comments