From 20797f0a82f3211fa53ccbc82d8c6dbe07986e94 Mon Sep 17 00:00:00 2001 From: Dmitry Tantsur Date: Thu, 26 Jan 2023 16:17:42 +0100 Subject: [PATCH] Stop gating on unit test coverage It's nice to keep coverage high, but with little active development it starts merely hindering refactorings, causing us to gradually lower the expected minimum anyway. Change-Id: I4bec5dbb224c59048c24cf2189a80014d63bfa36 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 7c793d3b5..576806013 100644 --- a/tox.ini +++ b/tox.ini @@ -48,7 +48,7 @@ commands = coverage erase stestr run {posargs} coverage combine - coverage report -m --omit='*test*' --fail-under 90 + coverage report -m --omit='*test*' coverage html -d ./cover --omit='*test*' [testenv:pep8]