Skip to content

Commit b981f9a

Browse files
committed
Create tests module for setuptools test support
Run test suite via python setup.py test Signed-off-by: Mike Neilsen <[email protected]>
1 parent 5bf0625 commit b981f9a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/usr/bin/env python
1+
#!/usr/bin/env python
22
import os
33
from setuptools import setup
44

@@ -13,6 +13,7 @@
1313
packages=['docker'],
1414
install_requires=['requests', 'six'] + test_requirements,
1515
zip_safe=False,
16+
test_suite='tests',
1617
classifiers=['Development Status :: 3 - Alpha',
1718
'Environment :: Other Environment',
1819
'Intended Audience :: Developers',

tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)