diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 08f0631..98f8159 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -27,15 +27,16 @@ jobs: run: | pytest --cov=./ --cov-report=xml - name: test - run: ls + run: | + pwd + ls - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4 with: directory: ./coverage/reports/ env_vars: OS,PYTHON fail_ci_if_error: true - files: ./coverage.xml,!./cache + files: ./coverage.xml flags: unittests - name: codecov-umbrella token: ${{ secrets.CODECOV_TOKEN }} verbose: true