From 7483c87e7d0b09d5efad9e373d64c7badaa4f07f Mon Sep 17 00:00:00 2001 From: Alexander Hughes Date: Mon, 8 Apr 2019 10:22:42 -0500 Subject: [PATCH] Increase coverage threshold of tox tests to 87% Currently tox coverage has a threshold of 85%, but unit tests are covering 88.44% of pegleg. Increase threshold from 85% to 87%. Change-Id: Iee86b54763ea64bf0956a9928afbb35898460ac3 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 14c6df7f..3a66b14b 100644 --- a/tox.ini +++ b/tox.ini @@ -60,7 +60,7 @@ commands = {toxinidir}/tools/install-cfssl.sh bash -c 'PATH=$PATH:~/.local/bin; pytest --cov=pegleg --cov-report \ html:cover --cov-report xml:cover/coverage.xml --cov-report term \ - --cov-fail-under 85 tests/' + --cov-fail-under 87 tests/' whitelist_externals = bash