From 4e1056093966679a96e743313696d12647cdaca7 Mon Sep 17 00:00:00 2001 From: Tim Millar Date: Thu, 19 Dec 2024 15:08:39 +1300 Subject: [PATCH] Remove CI tests of pedigree functions without JIT --- .github/workflows/build-numpy-2.yml | 6 ------ .github/workflows/build.yml | 6 ------ 2 files changed, 12 deletions(-) diff --git a/.github/workflows/build-numpy-2.yml b/.github/workflows/build-numpy-2.yml index 4e1c14890..01bd76781 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 d29c757ea..2b58856ca 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