Skip to content

Commit

Permalink
Add coverage.xml and .coverage to gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
igrek51 committed Jan 30, 2024
1 parent 7728730 commit 8edee57
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ jobs:
python-version: '3.8'
- name: Install dependencies
run: make setup-test-unit
- run: . venv/bin/activate && make test
- run: . venv/bin/activate && make test && python -m coverage xml

- name: Upload Coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./.coverage
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
*.pyc
.cache
.coverage
.pytest_cache
.mypy_cache/
__pycache__
*.egg-info
build/
dist/
.coverage
coverage.xml
/venv

.idea
Expand Down

0 comments on commit 8edee57

Please sign in to comment.