Skip to content
This repository was archived by the owner on Apr 22, 2024. It is now read-only.

Commit decbcac

Browse files
josemauroberaldoleal
authored andcommitted
Fix requirements list for development and tests.
`tests_require` should list only libraries need for running *unit* tests. Libraries and apps needed for linting/coverage/etc. should be listed under the 'dev' installation mode.
1 parent 3bad855 commit decbcac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,9 @@ def run(self):
119119
test_suite='tests',
120120
include_package_data=True,
121121
setup_requires=['pytest-runner'],
122-
tests_require=['coverage', 'pytest', 'yala', 'tox'],
123-
extras_require={'dev': ['pip-tools >= 2.0']},
122+
tests_require=['pytest'],
123+
extras_require={'dev': ['pip-tools >= 2.0',
124+
'coverage', 'pytest', 'yala', 'tox']},
124125
packages=find_packages(exclude=['tests']),
125126
cmdclass={
126127
'ci': CITest,

0 commit comments

Comments
 (0)