Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralexzorin <alex@zorin.id.au>2020-12-06 11:23:33 +0300
committerGitHub <noreply@github.com>2020-12-06 11:23:33 +0300
commit38017473c5f945cbf85744d55ef876fdfcc72b2b (patch)
tree422b0bb6333919f986715db73878ebd4bb21d561 /tox.ini
parentdc3ac13750de7df2f48b7808fb7ffca2b1335cf8 (diff)
add coverage testing to dns-rfc2136 integration (#8469)
* add coverage testing to dns-rfc2136 integration * add coverage rule for certbot/* as well
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 5 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index f87c1dbca..142e62a92 100644
--- a/tox.ini
+++ b/tox.ini
@@ -222,7 +222,11 @@ commands =
{[base]pip_install} acme certbot certbot-dns-rfc2136 certbot-ci
pytest certbot-ci/certbot_integration_tests/rfc2136_tests \
--acme-server=pebble --dns-server=bind \
- --numprocesses=1
+ --numprocesses=1 \
+ --cov=acme --cov=certbot --cov=certbot_dns_rfc2136 --cov-report= \
+ --cov-config=certbot-ci/certbot_integration_tests/.coveragerc
+ coverage report --include 'certbot/*' --show-missing --fail-under=45
+ coverage report --include 'certbot-dns-rfc2136/*' --show-missing --fail-under=87
[testenv:integration-external]
# Run integration tests with Certbot outside of tox's virtual environment.