diff --git a/.github/workflows/build-numpy-2.yml b/.github/workflows/build-numpy-2.yml index 4e1c1489..01bd7678 100644 --- a/.github/workflows/build-numpy-2.yml +++ b/.github/workflows/build-numpy-2.yml @@ -27,12 +27,6 @@ jobs: pip install -U 'numpy<2.1' -U git+https://github.com/sgkit-dev/bio2zarr.git # - name: Run pre-commit # uses: pre-commit/action@v2.0.0 - - name: Test with pytest (numba jit disabled) - env: - NUMBA_DISABLE_JIT: 1 - run: | - # avoid guvectorized functions #1194 - pytest -v sgkit/tests/test_pedigree.py - name: Test with pytest and coverage run: | pytest -v --cov=sgkit --cov-report=term-missing diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d29c757e..2b58856c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,12 +28,6 @@ jobs: pip install -r requirements.txt -r requirements-dev.txt - name: Run pre-commit uses: pre-commit/action@v2.0.0 - - name: Test with pytest (numba jit disabled) - env: - NUMBA_DISABLE_JIT: 1 - run: | - # avoid guvectorized functions #1194 - pytest -v sgkit/tests/test_pedigree.py - name: Test with pytest and coverage run: | pytest -v --cov=sgkit --cov-report=term-missing