diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index 7bc55d436..000000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Workflow for Codecov -on: [push, pull_request] -jobs: - run: - runs-on: ubuntu-latest - steps: - - name: Checkout HEXRD - uses: actions/checkout@v4 - with: - path: hexrd - - name: Set up Python 3.11 - uses: actions/setup-python@v4 - with: - python-version: '3.11' - - - - name: Checkout examples - uses: actions/checkout@v4 - with: - repository: HEXRD/examples - path: examples - - - name: Install HEXRD - run: | - pip install . - working-directory: hexrd - - - name: Install requirements-dev.txt - run: | - pip install -r tests/requirements-dev.txt - working-directory: hexrd - - - name: Run tests - env: - HEXRD_EXAMPLE_REPO_PATH: ${{ github.workspace }}/examples - run: | - pytest tests --cov hexrd - working-directory: hexrd - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 diff --git a/tests/requirements-dev.txt b/tests/requirements-dev.txt index e079b1cd2..45b49898d 100644 --- a/tests/requirements-dev.txt +++ b/tests/requirements-dev.txt @@ -1,3 +1,2 @@ pytest -coloredlogs -pytest-cov \ No newline at end of file +coloredlogs \ No newline at end of file