Skip to content

Commit

Permalink
Update test coverage action script.
Browse files Browse the repository at this point in the history
  • Loading branch information
eli64s committed Dec 4, 2023
1 parent 217ba54 commit 0134746
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,15 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest coverage pytest-cov
pip install pytest coverage pytest-cov setuptools
- name: Install Project
run: |
pip install -e .
- name: Set PYTHONPATH
run: echo "PYTHONPATH=${{ github.workspace }}" >> $GITHUB_ENV

- name: Run tests with coverage
run: |
pytest --cov=./ --cov-report=xml
Expand Down

0 comments on commit 0134746

Please sign in to comment.