Add faux test suite

It would be great if we could start moving PIL's tests in to a proper test suite i.e. inside a Python package
This commit is contained in:
Alex Clark 2013-09-28 09:26:28 -04:00
parent 59e3b7113f
commit f7393d8977
2 changed files with 18 additions and 0 deletions

17
PIL/tests.py Normal file
View File

@ -0,0 +1,17 @@
import unittest
class PillowTests(unittest.TestCase):
"""
Can we start moving the test suite here?
"""
def move_test_suite_here(self):
"""
Great idea!
"""
assert True is True
if __name__ == '__main__':
unittest.main()

View File

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