Create tests module for setuptools test support

Run test suite via

  python setup.py test

Signed-off-by: Mike Neilsen <mneilsen@acm.org>
This commit is contained in:
Mike Neilsen 2013-07-13 01:07:04 -05:00
parent 5bf0625a7a
commit b981f9a6de
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#/usr/bin/env python
#!/usr/bin/env python
import os
from setuptools import setup
@ -13,6 +13,7 @@ setup(
packages=['docker'],
install_requires=['requests', 'six'] + test_requirements,
zip_safe=False,
test_suite='tests',
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Other Environment',
'Intended Audience :: Developers',

0
tests/__init__.py Normal file
View File