Skip to content

Commit

Permalink
fix: coverage calculation in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dancergraham committed Jan 18, 2025
1 parent 21a5e2d commit bf6ffe4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,13 @@ jobs:
python-version: 3.13
- name: Install dependencies
run: |
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install coverage codecov
export DJANGO_SETTINGS_MODULE="test_settings"
export PYTHONPATH=.".:$PYTHONPATH"
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run coverage
run: |
Expand Down

0 comments on commit bf6ffe4

Please sign in to comment.