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:
Diffstat (limited to 'acme/setup.py')
-rw-r--r--acme/setup.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/acme/setup.py b/acme/setup.py
index 79d6d3389..6cb5c3f92 100644
--- a/acme/setup.py
+++ b/acme/setup.py
@@ -36,6 +36,7 @@ docs_extras = [
'sphinx_rtd_theme',
]
+
class PyTest(TestCommand):
user_options = []
@@ -50,6 +51,7 @@ class PyTest(TestCommand):
errno = pytest.main(shlex.split(self.pytest_args))
sys.exit(errno)
+
setup(
name='acme',
version=version,
@@ -82,7 +84,7 @@ setup(
'dev': dev_extras,
'docs': docs_extras,
},
- tests_require=["pytest"],
test_suite='acme',
+ tests_require=["pytest"],
cmdclass={"test": PyTest},
)