[7.x] Switch to Pytest as default runner

This commit is contained in:
Seth Michael Larson
2020-05-19 14:18:53 -05:00
committed by Seth Michael Larson
parent f8b005f62e
commit eaff4af910
12 changed files with 274 additions and 233 deletions
+6 -3
View File
@@ -13,14 +13,17 @@ __versionstr__ = "7.9.0a1"
with open(join(dirname(__file__), "README")) as f:
long_description = f.read().strip()
install_requires = ["urllib3>=1.21.1", "certifi"]
install_requires = [
"urllib3>=1.21.1",
"certifi",
]
tests_require = [
"requests>=2.0.0, <3.0.0",
"nose",
"coverage",
"mock",
"pyyaml",
"nosexcover",
"pytest",
"pytest-cov",
]
docs_require = ["sphinx<1.7", "sphinx_rtd_theme"]