diff --git a/.github/workflows/step_tests-conda.yml b/.github/workflows/step_tests-conda.yml index bf6b6c24..00b3c637 100644 --- a/.github/workflows/step_tests-conda.yml +++ b/.github/workflows/step_tests-conda.yml @@ -40,7 +40,6 @@ jobs: auto-update-conda: true auto-activate-base: false activate-environment: jupytext-ci - python-version: 3.x channels: defaults,conda-forge environment-file: .ci/environment-ci.yml use-only-tar-bz2: true @@ -62,9 +61,7 @@ jobs: python -m jupyterlab.browser_check - name: Test with pytest - # We use an explicit coverage file otherwise the - # codecov action below does not find it - run: pytest --cov . --cov-report xml:coverage.xml + run: pytest --cov - name: Upload coverage uses: codecov/codecov-action@v3 @@ -72,4 +69,3 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true verbose: true - files: coverage.xml