Adding test_suite to setup.py so that python setup.py test uses nose

This commit is contained in:
Charles Gordon
2015-06-17 11:36:24 -07:00
parent 0806e101a5
commit e67d4e379b

View File

@@ -11,6 +11,7 @@ setup(
author_email = 'charles@pinterest.com',
packages = find_packages(),
tests_require = ['nose>=1.0'],
test_suite = 'nose.collector',
install_requires = ['six'],
description = 'A comprehensive, fast, pure Python memcached client',
long_description = open('README.md').read(),