Merge pull request #4189 from cgohlke/patch-1

Report details about Pillow when running tests
This commit is contained in:
Hugo van Kemenade 2019-11-05 13:01:02 +02:00 committed by GitHub
commit 3663af1967
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
Tests/conftest.py Normal file
View File

@ -0,0 +1,11 @@
def pytest_report_header(config):
import io
try:
from PIL import features
with io.StringIO() as out:
features.pilinfo(out=out, supported_formats=False)
return out.getvalue()
except Exception as e:
return "pytest_report_header failed: %s" % str(e)