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 3f2ee00 commit 54789acCopy full SHA for 54789ac
.github/workflows/ci.yml
@@ -45,7 +45,10 @@ jobs:
45
with:
46
manifest-path: pyproject.toml
47
- name: Run Tests
48
- run: pixi run --environment ${{ matrix.pixi-environment }} test
+ run: |
49
+ pixi run --environment ${{ matrix.pixi-environment }} test &&
50
+ pixi run --environment ${{ matrix.pixi-environment }} test-single-thread &&
51
+ pixi run --environment ${{ matrix.pixi-environment }} test-jit
52
53
build:
54
runs-on: ubuntu-latest
tests/test_celltree.py
@@ -1,7 +1,3 @@
1
-import os
2
-
3
-os.environ["NUMBA_DISABLE_JIT"] = "1"
4
-os.environ["NUMBA_NUM_THREADS"] = "1"
5
import pathlib
6
import shutil
7
0 commit comments