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:
authorohemorange <ebportnoy@gmail.com>2019-11-27 02:25:41 +0300
committerGitHub <noreply@github.com>2019-11-27 02:25:41 +0300
commitd2b65b47f2e2968df62e0feea5ebf28bfdd3e4b2 (patch)
tree9c686c839091476d244237c75e58e90d818ef5a7 /acme/MANIFEST.in
parentb624172f6827b35214bc3a2df076df0bc524cba2 (diff)
Refactor tests out of packaged module for acme plugin (#7600)
* Move acme tests to tests/ directory outside of acme module * Fix call to messages_test in client_test * Move test_util.py and testdata/ into tests/ * Update manifest to package tests * Exclude pycache and .py[cod]
Diffstat (limited to 'acme/MANIFEST.in')
-rw-r--r--acme/MANIFEST.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/acme/MANIFEST.in b/acme/MANIFEST.in
index 1619bef69..de254250e 100644
--- a/acme/MANIFEST.in
+++ b/acme/MANIFEST.in
@@ -3,4 +3,6 @@ include README.rst
include pytest.ini
recursive-include docs *
recursive-include examples *
-recursive-include acme/testdata *
+recursive-include tests *
+global-exclude __pycache__
+global-exclude *.py[cod]