File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ jobs:
44
44
sudo apt-get install intel-oneapi-mkl-devel
45
45
46
46
- name : Setup Python
47
- uses : actions/setup-python@v5
47
+ uses : actions/setup-python@v5.6.0
48
48
with :
49
49
python-version : ${{ matrix.python }}
50
50
architecture : x64
51
51
52
52
- name : Checkout repo
53
- uses : actions/checkout@v4
53
+ uses : actions/checkout@v4.2.2
54
54
with :
55
55
fetch-depth : 0
56
56
74
74
run : |
75
75
source ${{ env.ONEAPI_ROOT }}/setvars.sh
76
76
pip install pytest
77
+ # mkl_umath cannot be installed in editable mode, we need
78
+ # to change directory before importing it and running tests
77
79
cd ..
78
80
python -m pytest -sv --pyargs mkl_umath/mkl_umath/tests
Original file line number Diff line number Diff line change 56
56
pip install . --no-build-isolation --no-deps --verbose
57
57
pip install --no-cache-dir pytest
58
58
pip list
59
+ # mkl_umath cannot be installed in editable mode, we need
60
+ # to change directory before importing it and running tests
59
61
cd ..
60
62
python -m pytest -v mkl_umath/mkl_umath/tests
You can’t perform that action at this time.
0 commit comments