Prepare for tests.

This doesn't add any actual tests but it should pave the way for that.  Tests
may be run like so:

{{{
python setup.py nosetests --with-coverage
}}}
This commit is contained in:
Lance Edgar 2013-06-19 08:03:42 -07:00
parent 844856f425
commit 4f34e6dddc
4 changed files with 37 additions and 1 deletions

View file

@ -94,6 +94,8 @@ setup(
],
install_requires = requires,
tests_require = requires + ['nose', 'coverage'],
test_suite = 'nose.collector',
namespace_packages = ['rattail'],
packages = find_packages(),