We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9c98162 + d331eb9 commit 1185fb8Copy full SHA for 1185fb8
Tests/conftest.py
@@ -2,8 +2,10 @@
2
3
import io
4
5
+import pytest
6
-def pytest_report_header(config):
7
+
8
+def pytest_report_header(config: pytest.Config) -> str:
9
try:
10
from PIL import features
11
@@ -14,7 +16,7 @@ def pytest_report_header(config):
14
16
return f"pytest_report_header failed: {e}"
15
17
18
-def pytest_configure(config):
19
+def pytest_configure(config: pytest.Config) -> None:
20
config.addinivalue_line(
21
"markers",
22
"pil_noop_mark: A conditional mark where nothing special happens",
0 commit comments