Merge pull request #3795 from AdamWill/tests-require-pytest-mock

Require pytest-mock for the tests
This commit is contained in:
Cory Benfield
2016-12-30 18:14:59 +00:00
committed by GitHub
+1 -1
View File
@@ -47,7 +47,7 @@ packages = [
]
requires = []
test_requirements = ['pytest>=2.8.0', 'pytest-httpbin==0.0.7', 'pytest-cov']
test_requirements = ['pytest>=2.8.0', 'pytest-httpbin==0.0.7', 'pytest-cov', 'pytest-mock']
with open('requests/__init__.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',