Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed codecov #49

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .github/workflows/checks-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,4 @@ jobs:

- name: Check Docker Build
run: make docker_build

- name: Run Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
# NB: fail_ci_if_error is enabled to make any teething issues with Codecov visible.
# If Codecov has outage issues in the future, this can be toggled to false to allow the action to pass.
fail_ci_if_error: true

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ update_vulture_whitelist:
lint: flake vulture

unit_test: lint
APP_CONFIG=TestingConfig pipenv run pytest tests/unit --cov rh_ui --cov-report term-missing --cov-report xml
APP_CONFIG=TestingConfig pipenv run pytest tests/unit --cov rh_ui --cov-report html --cov-report term-missing --cov-fail-under 80

test: install unit_test integration_test

Expand Down