We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e1f638 commit b015d4aCopy full SHA for b015d4a
conftest.py
@@ -4,6 +4,7 @@
4
import tempfile
5
6
from packaging import version
7
+from typing import Dict
8
9
import lib.config as global_config
10
@@ -119,7 +120,7 @@ def pytest_collection_modifyitems(items, config):
119
120
# FIXME we may have to move this into lib/ if fixtures in sub-packages
121
# want to make use of this feature
122
-PHASE_REPORT_KEY = pytest.StashKey[dict[str, pytest.CollectReport]]()
123
+PHASE_REPORT_KEY = pytest.StashKey[Dict[str, pytest.CollectReport]]()
124
@pytest.hookimpl(wrapper=True, tryfirst=True)
125
def pytest_runtest_makereport(item, call):
126
# execute all other hooks to obtain the report object
0 commit comments