Skip to content

Commit

Permalink
🔧 Fix coverage test
Browse files Browse the repository at this point in the history
  • Loading branch information
daquintero committed Aug 21, 2024
1 parent 056ab4b commit 5120476
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,16 @@ jobs:
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
run: uv pip install -e .[dev]
run: |
uv venv venv
uv pip install -e .[dev]
#----------------------------------------------
# add matrix specifics and run test suite
#----------------------------------------------
- name: Run tests
run: |
source $VENV
source venv/bin/activate
uv run coverage run -m pytest -rA tests
uv run coverage report -m
echo "total=$(coverage report --format=total)" >> $GITHUB_ENV
Expand Down

0 comments on commit 5120476

Please sign in to comment.