Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

Commit

Permalink
Add tests_require
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed Jun 26, 2013
1 parent bf301b1 commit ca8510d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
from setuptools.command.test import test as TestCommand
import sys

setup_requires = [
'pytest',
]

dev_requires = [
'flake8>=1.6,<2.0',
]
Expand All @@ -44,7 +48,6 @@
flask_tests_requires = []
unittest2_requires = []


tests_require = [
'bottle',
'celery>=2.5',
Expand Down Expand Up @@ -95,6 +98,7 @@ def run_tests(self):
'tests': tests_require,
'dev': dev_requires,
},
tests_require=tests_require,
cmdclass={'test': PyTest},
include_package_data=True,
entry_points={
Expand Down

0 comments on commit ca8510d

Please sign in to comment.