Skip to content

Commit

Permalink
Make python setup.py test run tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
msabramo committed May 31, 2012
1 parent be03d7b commit 610d93f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions setup.py
@@ -1,6 +1,10 @@
import os
import sys
from distutils.core import setup

try:
from setuptools import setup
except ImportError:
from distutils.core import setup

# Don't import stripe module here, since deps may not be installed
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'stripe'))
Expand Down Expand Up @@ -31,5 +35,6 @@
url='https://stripe.com/',
packages=['stripe'],
package_data={'stripe' : ['data/ca-certificates.crt', '../VERSION']},
install_requires=install_requires
install_requires=install_requires,
test_suite='test',
)
Empty file added test/__init__.py
Empty file.

0 comments on commit 610d93f

Please sign in to comment.