From 1e291da63695003e98ecbbd24d8a8615d8637f22 Mon Sep 17 00:00:00 2001 From: Alexander Clausen Date: Tue, 3 Sep 2024 12:17:59 +0200 Subject: [PATCH] Remove `numba_coverage` job --- .github/workflows/ci.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a40b4e9..e6cd0c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,20 +37,3 @@ jobs: uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - - numba_coverage: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: 'Choose Python version 3.12' - uses: actions/setup-python@v5 - with: - python-version: '3.12' - - name: install the package - run: python3 -m pip install uv && uv pip install --system .[test] - - name: run pytest - run: NUMBA_DISABLE_JIT=1 pytest --cov=libertem_schema --cov-report=xml --cov-report=term tests/ - - name: submit code coverage - uses: codecov/codecov-action@v4 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}