Skip to content

Commit

Permalink
Move mock from install_requires to test_requires. (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
tetron committed May 25, 2017
1 parent 9371ae5 commit e441522
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
'extensions.yml']},
include_package_data=True,
install_requires=[
'mock >= 2.0.0',
'setuptools',
'requests >= 1.0',
'ruamel.yaml >= 0.12.4',
Expand All @@ -64,7 +63,7 @@
],
setup_requires=[] + pytest_runner,
test_suite='tests',
tests_require=['pytest'],
tests_require=['pytest', 'mock >= 2.0.0',],
entry_points={
'console_scripts': ["cwltool=cwltool.main:main"]
},
Expand Down

0 comments on commit e441522

Please sign in to comment.