From ab2abaa0a67b69650fc68e29ef96d41285e4ac0f Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 20 Dec 2015 11:58:04 -0500 Subject: setup.py: added `test_suite`. Now tests can be run with `python setup.py test` command. --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index a8c3712..9a43f25 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ config = { 'author_email': 'rsd@gnu.org', 'install_requires': ['mistune', 'Jinja2', 'beautifulsoup4'], 'tests_require': ['nose', 'mock'], + 'test_suite': 'nose.collector', 'py_modules': ['lps_gen'], 'packages': find_packages(exclude=['tests']), 'package_data': { 'lpschedule_generator': ['templates/*.jinja2'] }, -- cgit v1.2.3