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.
1 parent d65eb5d commit 7d03fdcCopy full SHA for 7d03fdc
src/e2e_tests/conftest.py
@@ -83,7 +83,9 @@ def pytest_configure(config):
83
with open(CONFIG_PATH) as config_file:
84
data = json.load(config_file)
85
for config_item in data.keys():
86
- config._metadata[str(config_item)] = str(data[config_item])
+ # https://github.com/pytest-dev/pytest-metadata/issues/70
87
+ from pytest_metadata.plugin import metadata_key
88
+ config.stash[metadata_key][str(config_item)] = str(data[config_item])
89
90
91
def pytest_html_report_title(report):
0 commit comments