Skip to content

Commit f98dbe7

Browse files
committed
Use less strict numbers for coverage.
Not all lines will be covered all the time, this is normal. Setting numbers that are too strict encourages chasing metrics rather than reasonable test coverage.
1 parent 4a319a6 commit f98dbe7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pytest.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[pytest]
2-
addopts = --durations=10 --cov-config=.coveragerc --timeout=120 --timeout_method=thread --cov=runpod --cov-report=xml --cov-report=term-missing --cov-fail-under=98 -W error -p no:cacheprovider -p no:unraisableexception
2+
addopts = --durations=10 --cov-config=.coveragerc --timeout=120 --timeout_method=thread --cov=runpod --cov-report=xml --cov-report=term-missing --cov-fail-under=90 -W error -p no:cacheprovider -p no:unraisableexception
33
python_files = tests.py test_*.py *_test.py
44
norecursedirs = venv *.egg-info .git build

0 commit comments

Comments
 (0)