Configure setuptools to run nosetests, fixes #729

http://nose.readthedocs.org/en/latest/setuptools_integration.html
This commit is contained in:
Alex Clark 2015-03-31 20:22:09 -04:00
parent 5114425f6b
commit 0d64171481
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,9 @@ Changelog (Pillow)
2.8.0 (unreleased)
------------------
- Configure setuptools to run nosetests, fixes #729
[aclark]
- Various code health fixes
[radarhere]

View File

@ -754,7 +754,7 @@ setup(
include_package_data=True,
packages=find_packages(),
scripts=glob.glob("Scripts/pil*.py"),
test_suite='PIL.tests',
test_suite='nose.collector',
keywords=["Imaging", ],
license='Standard PIL License',
zip_safe= not debug_build(),