Skip to content
Snippets Groups Projects
Unverified Commit 4cb93871 authored by Adam Williamson's avatar Adam Williamson Committed by GitHub
Browse files

Merge pull request #298 from AdamWill/setuptools-require

Mark tests as requiring setuptools in tox.ini and setup.py
parents 9682656d ab4f00c6
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,6 @@ setup(name='mwclient', ...@@ -34,6 +34,6 @@ setup(name='mwclient',
setup_requires=pytest_runner, setup_requires=pytest_runner,
tests_require=['pytest', 'pytest-cov', tests_require=['pytest', 'pytest-cov',
'mock;python_version<"3.3"', 'mock;python_version<"3.3"',
'responses>=0.3.0', 'responses!=0.6.0'], 'responses>=0.3.0', 'responses!=0.6.0', 'setuptools'],
zip_safe=True zip_safe=True
) )
...@@ -16,6 +16,7 @@ deps = ...@@ -16,6 +16,7 @@ deps =
pytest pytest
pytest-cov pytest-cov
responses responses
setuptools
mock mock
commands = py.test -v --cov mwclient test commands = py.test -v --cov mwclient test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment