Skip to content

Commit da8e646

Browse files
author
Vahid Tavanashad
committed
add a comment
1 parent ff9b9bd commit da8e646

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/build-with-clang.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ jobs:
4444
sudo apt-get install intel-oneapi-mkl-devel
4545
4646
- name: Setup Python
47-
uses: actions/setup-python@v5
47+
uses: actions/setup-python@v5.6.0
4848
with:
4949
python-version: ${{ matrix.python }}
5050
architecture: x64
5151

5252
- name: Checkout repo
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v4.2.2
5454
with:
5555
fetch-depth: 0
5656

@@ -74,5 +74,7 @@ jobs:
7474
run: |
7575
source ${{ env.ONEAPI_ROOT }}/setvars.sh
7676
pip install pytest
77+
# mkl_umath cannot be installed in editable mode, we need
78+
# to change directory before importing it and running tests
7779
cd ..
7880
python -m pytest -sv --pyargs mkl_umath/mkl_umath/tests

.github/workflows/build_pip.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,7 @@ jobs:
5656
pip install . --no-build-isolation --no-deps --verbose
5757
pip install --no-cache-dir pytest
5858
pip list
59+
# mkl_umath cannot be installed in editable mode, we need
60+
# to change directory before importing it and running tests
5961
cd ..
6062
python -m pytest -v mkl_umath/mkl_umath/tests

0 commit comments

Comments
 (0)