python/coverage: update to 7.6.5
[oi-userland.git] / components / python / pillow / patches / 02-no-pilinfo.patch
blob9ac243f6b4ada4b4330cdaa1e65254c4bd3f39ae
1 We do not need one more pilinfo. The one printed by selftest.py is enough.
3 --- pillow-11.0.0/Tests/conftest.py.orig
4 +++ pillow-11.0.0/Tests/conftest.py
5 @@ -5,17 +5,6 @@
6 import pytest
9 -def pytest_report_header(config: pytest.Config) -> str:
10 - try:
11 - from PIL import features
13 - with io.StringIO() as out:
14 - features.pilinfo(out=out, supported_formats=False)
15 - return out.getvalue()
16 - except Exception as e:
17 - return f"pytest_report_header failed: {e}"
20 def pytest_configure(config: pytest.Config) -> None:
21 config.addinivalue_line(
22 "markers",