new mock appears to break things

This commit is contained in:
HawkOwl
2015-07-23 17:24:13 +08:00
parent 14cd00b1d3
commit 76335563e4
2 changed files with 3 additions and 3 deletions

View File

@@ -129,11 +129,11 @@ extras_require_all = extras_require_twisted + extras_require_asyncio + \
# development dependencies
#
extras_require_dev = ["pep8", "flake8", "mock>=1.0.1", "pytest>=2.6.4"]
extras_require_dev = ["pep8", "flake8", "mock==1.0.1", "pytest>=2.6.4"]
# for testing by users with "python setup.py test" (not Tox, which we use)
#
test_requirements = ["pytest", "mock"]
test_requirements = ["pytest", "mock==1.0.1"]
# pytest integration for setuptools. see:

View File

@@ -14,7 +14,7 @@ envlist = flake8,
[testenv]
deps =
pytest
mock
mock==1.0.1
coverage
commands = python -m pytest
whitelist_externals = sh