From 22e9aa104bc49e8d7325c3fb7030073f34302fbe Mon Sep 17 00:00:00 2001 From: alanlujan91 Date: Fri, 26 Apr 2024 11:02:54 -0400 Subject: [PATCH] Delete coverage.yml --- .github/workflows/coverage.yml | 42 ---------------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index 16afc2b7d..000000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Generate coverage report - -on: - push: - branches: - - master - paths-ignore: - - ".github/workflows/documentation.yml" - - "Documentation/**" - pull_request: - branches: - - master - paths-ignore: - - ".github/workflows/documentation.yml" - - "Documentation/**" - -jobs: - build: - runs-on: Ubuntu-20.04 - strategy: - matrix: - python-version: [3.8] - - steps: - - uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 - with: - python-version: ${{ matrix.python-version }} - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install -r requirements/base.txt - - name: Generate coverage report - run: | - pip install pytest pytest-cov - NUMBA_DISABLE_JIT=1 - pytest --cov=./ --cov-report=xml - - name: upload coverage report - uses: codecov/codecov-action@v3 - with: - fail_ci_if_error: false