mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-04 13:40:54 +03:00
Merge pull request #615 from hugovk/master
Test runner: print out list of failures at end
This commit is contained in:
commit
6cd0e1757b
21
Tests/run.py
21
Tests/run.py
|
@ -2,7 +2,12 @@ from __future__ import print_function
|
||||||
|
|
||||||
# minimal test runner
|
# minimal test runner
|
||||||
|
|
||||||
import glob, os, os.path, sys, tempfile, re
|
import glob
|
||||||
|
import os
|
||||||
|
import os.path
|
||||||
|
import re
|
||||||
|
import sys
|
||||||
|
import tempfile
|
||||||
|
|
||||||
try:
|
try:
|
||||||
root = os.path.dirname(__file__)
|
root = os.path.dirname(__file__)
|
||||||
|
@ -34,6 +39,7 @@ files.sort()
|
||||||
success = failure = 0
|
success = failure = 0
|
||||||
include = [x for x in sys.argv[1:] if x[:2] != "--"]
|
include = [x for x in sys.argv[1:] if x[:2] != "--"]
|
||||||
skipped = []
|
skipped = []
|
||||||
|
failed = []
|
||||||
|
|
||||||
python_options = " ".join(python_options)
|
python_options = " ".join(python_options)
|
||||||
tester_options = " ".join(tester_options)
|
tester_options = " ".join(tester_options)
|
||||||
|
@ -91,7 +97,7 @@ for file in files:
|
||||||
# if there's an ok at the end, it's not really ok
|
# if there's an ok at the end, it's not really ok
|
||||||
result = result[:-3]
|
result = result[:-3]
|
||||||
print(result)
|
print(result)
|
||||||
failure = failure + 1
|
failed.append(test)
|
||||||
else:
|
else:
|
||||||
success = success + 1
|
success = success + 1
|
||||||
|
|
||||||
|
@ -105,6 +111,7 @@ if tempfiles:
|
||||||
print(file)
|
print(file)
|
||||||
print("-"*68)
|
print("-"*68)
|
||||||
|
|
||||||
|
|
||||||
def tests(n):
|
def tests(n):
|
||||||
if n == 1:
|
if n == 1:
|
||||||
return "1 test"
|
return "1 test"
|
||||||
|
@ -112,10 +119,12 @@ def tests(n):
|
||||||
return "%d tests" % n
|
return "%d tests" % n
|
||||||
|
|
||||||
if skipped:
|
if skipped:
|
||||||
print("---", tests(len(skipped)), "skipped.")
|
print("---", tests(len(skipped)), "skipped:")
|
||||||
print(skipped)
|
print(", ".join(skipped))
|
||||||
if failure:
|
if failed:
|
||||||
print("***", tests(failure), "of", (success + failure), "failed.")
|
failure = len(failed)
|
||||||
|
print("***", tests(failure), "of", (success + failure), "failed:")
|
||||||
|
print(", ".join(failed))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
print(tests(success), "passed.")
|
print(tests(success), "passed.")
|
||||||
|
|
|
@ -2,6 +2,7 @@ from tester import *
|
||||||
|
|
||||||
from PIL import Image
|
from PIL import Image
|
||||||
|
|
||||||
|
|
||||||
def verify(im1):
|
def verify(im1):
|
||||||
im2 = lena("I")
|
im2 = lena("I")
|
||||||
assert_equal(im1.size, im2.size)
|
assert_equal(im1.size, im2.size)
|
||||||
|
@ -18,6 +19,7 @@ def verify(im1):
|
||||||
return
|
return
|
||||||
success()
|
success()
|
||||||
|
|
||||||
|
|
||||||
def test_basic():
|
def test_basic():
|
||||||
# PIL 1.1 has limited support for 16-bit image data. Check that
|
# PIL 1.1 has limited support for 16-bit image data. Check that
|
||||||
# create/copy/transform and save works as expected.
|
# create/copy/transform and save works as expected.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user