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 1affc39 commit 8ac6231Copy full SHA for 8ac6231
_pytest/main.py
@@ -77,6 +77,16 @@ def pytest_addoption(parser):
77
help="base temporary directory for this test run.")
78
79
80
+
81
+def pytest_namespace():
82
+ """keeping this one works around a deeper startup issue in pytest
83
84
+ i tried to find it for a while but the amount of time turned unsustainable,
85
+ so i put a hack in to revisit later
86
+ """
87
+ return {}
88
89
90
def pytest_configure(config):
91
__import__('pytest').config = config # compatibiltiy
92
0 commit comments