Skip to content

Commit 4ec6edb

Browse files
committed
Require only 95% coverage
1 parent d6e1ba8 commit 4ec6edb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,9 @@ jobs:
3737
3838
- name: "Run tests"
3939
run: |
40-
pytest -s -vvv --cov-fail-under 100 --cov=pip_check_reqs/ --cov=tests tests/ --cov-report=xml
40+
# 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
4143
4244
- name: "Upload coverage to Codecov"
4345
uses: "codecov/codecov-action@v1"

0 commit comments

Comments
 (0)