mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-26 16:03:08 +03:00
Add test runner
This commit is contained in:
parent
1d96522932
commit
b7f94e3609
2
setup.py
2
setup.py
|
@ -680,7 +680,7 @@ setup(
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
scripts=glob.glob("Scripts/pil*.py"),
|
scripts=glob.glob("Scripts/pil*.py"),
|
||||||
test_suite='PIL.tests',
|
test_suite='test.helper.TestSuite',
|
||||||
keywords=["Imaging",],
|
keywords=["Imaging",],
|
||||||
license='Standard PIL License',
|
license='Standard PIL License',
|
||||||
zip_safe=True,
|
zip_safe=True,
|
||||||
|
|
0
test/__init__.py
Normal file
0
test/__init__.py
Normal file
|
@ -308,3 +308,6 @@ def lena(mode="RGB", cache={}):
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
# _setup()
|
# _setup()
|
||||||
|
|
||||||
|
TestLoader = unittest.TestLoader()
|
||||||
|
TestSuite = TestLoader.discover(start_dir='.')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user