We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6e1ba8 commit 4ec6edbCopy full SHA for 4ec6edb
.github/workflows/ci.yml
@@ -37,7 +37,9 @@ jobs:
37
38
- name: "Run tests"
39
run: |
40
- pytest -s -vvv --cov-fail-under 100 --cov=pip_check_reqs/ --cov=tests tests/ --cov-report=xml
+ # We currently require 95% test coverage and not 100% as this is the
41
+ # level that coverage was at when the CI restriction was introduced.
42
+ pytest -s -vvv --cov-fail-under 95 --cov=pip_check_reqs/ --cov=tests tests/ --cov-report=xml
43
44
- name: "Upload coverage to Codecov"
45
uses: "codecov/codecov-action@v1"
0 commit comments