diff --git a/.coveragerc b/.coveragerc index d2054f1..5af4565 100644 --- a/.coveragerc +++ b/.coveragerc @@ -5,6 +5,7 @@ source = creator format = text show_missing = True skip_empty = True +fail_under = 90 [xml] output = coverage.xml diff --git a/.github/workflows/build-python-app.yml b/.github/workflows/build-python-app.yml index 0ec7998..b6c91ce 100644 --- a/.github/workflows/build-python-app.yml +++ b/.github/workflows/build-python-app.yml @@ -36,7 +36,7 @@ jobs: - name: Test with pytest run: | python -m pytest --cov --cov-report=xml - + coverage report shell: bash - name: Code Coverage Report