Skip to content

Commit

Permalink
Fix codecov upload issues (#91)
Browse files Browse the repository at this point in the history
Fixes #90
  • Loading branch information
moggers87 authored Feb 28, 2021
1 parent d2a4a92 commit ed9f716
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
Expand All @@ -35,8 +37,6 @@ jobs:
run: tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: .coverage

misc:
runs-on: ubuntu-latest
Expand Down
11 changes: 6 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
*.egg*
*.pyc
.*.swp
.coverage
.tox
__pycache__
*.pyc
dist
build
*.egg*
.tox
coverage.xml
dist
docs/_build
.coverage
htmlcov
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ skip_install = true
commands =
coverage report
coverage html
coverage xml

[testenv:flake8]
commands = flake8 .
Expand Down

0 comments on commit ed9f716

Please sign in to comment.