We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10f42ba commit 2fa596dCopy full SHA for 2fa596d
2 files changed
.github/workflows/tests.yml
@@ -28,12 +28,13 @@ jobs:
28
- name: Install Python dependencies
29
run: |
30
python -m pip install --upgrade pip
31
- pip install -r requirements.txt
+ python -m pip install -r requirements.txt
32
+ python -m pip install -e .
33
34
- name: Rebuild CPU kernel libraries
35
36
make -C kernels/bit_1/cpu clean all
37
make -C kernels/bit_1_58/cpu clean all
38
39
- name: Run test suite
- run: pytest -q tests
40
+ run: python -m pytest -q tests
conftest.py
@@ -0,0 +1,4 @@
1
+import sys
2
+import os
3
+
4
+sys.path.insert(0, os.path.dirname(__file__))
0 commit comments