Skip to content

Commit

Permalink
Fix deployment coverage report location
Browse files Browse the repository at this point in the history
  • Loading branch information
mikelane committed Feb 1, 2021
1 parent ba113fb commit 60f4de3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
run: poetry install -vvv

- name: Run pytest
run: poetry run pytest -vvv --mypy --black --isort --force-sugar --tb=native --cov=reddit_get --cov-fail-under=90 --cov-report=xml:docs/coverage/report.xml --numprocesses=auto --color=yes --code-highlight=yes --durations=10
run: poetry run pytest -vvv --mypy --black --isort --force-sugar --tb=native --cov=reddit_get --cov-fail-under=90 --cov-report=xml:docs/coverage/deployment/report.xml --numprocesses=auto --color=yes --code-highlight=yes --durations=10

- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: codecov-umbrella
fail_ci_if_error: true
path_to_write_report: .docs/coverage/release-report.xml
path_to_write_report: .docs/coverage/deployment/report.xml

- name: Build Wheel
run: poetry build -vvv
Expand Down

0 comments on commit 60f4de3

Please sign in to comment.