Skip to content

Commit

Permalink
Moving interrogate badge generation to /tmp
Browse files Browse the repository at this point in the history
Signed-off-by: Julio Faracco <[email protected]>
  • Loading branch information
jcfaracco committed Aug 1, 2024
1 parent bb0d629 commit 04d3b42
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ jobs:
run: |
echo "* **interrogate results:** $(interrogate -i --fail-under=15 dasf/ | cut -d: -d" " -f4)" >> $GITHUB_STEP_SUMMARY
# We should have at least 80% of docs covered
interrogate -vv -i --fail-under=45 --badge-format svg -g . -e build/ -e tests/
interrogate -vv -i --fail-under=45 --badge-format svg -g /tmp/ -e build/ -e tests/
test_cpu:
runs-on: ubuntu-latest
environment: continuous_test
Expand All @@ -66,6 +66,9 @@ jobs:
image: docker.io/jcfaracco/dasf:cpu_ci
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pip install pytest-coverage
- name: Run test cases
run: |
pytest tests/
Expand Down

0 comments on commit 04d3b42

Please sign in to comment.