diff options
author | PJ Eby <distutils-sig@python.org> | 2006-03-28 22:40:57 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-03-28 22:40:57 +0000 |
commit | fb76e7210334ecbadcabfb1549e9df40c138b746 (patch) | |
tree | 1f3e6cd64a6063145a55a56415756b01c6190c1e /setup.py | |
parent | c1294e1d0218322a1e3457897198837a071f2271 (diff) | |
download | external_python_setuptools-fb76e7210334ecbadcabfb1549e9df40c138b746.tar.gz external_python_setuptools-fb76e7210334ecbadcabfb1549e9df40c138b746.tar.bz2 external_python_setuptools-fb76e7210334ecbadcabfb1549e9df40c138b746.zip |
Enhanced test loader to scan packages as well as modules, and call
``additional_tests()`` if present to get non-unittest tests.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4043412
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,7 +37,7 @@ setup( long_description = get_description(), keywords = "CPAN PyPI distutils eggs package management", url = "http://peak.telecommunity.com/DevCenter/setuptools", - test_suite = 'setuptools.tests.test_suite', + test_suite = 'setuptools.tests', packages = find_packages(), package_data = {'setuptools':['*.exe']}, |