From e90f876b348cb070d4b1a50e1f7f8312c17ee1de Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Mon, 31 Jul 2017 13:48:25 +0200 Subject: [PATCH] remove the last own implementation of pytest_namespace --- _pytest/main.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/_pytest/main.py b/_pytest/main.py index 4bddf1e2d..ee1ce00a2 100644 --- a/_pytest/main.py +++ b/_pytest/main.py @@ -83,15 +83,6 @@ def pytest_addoption(parser): help="base temporary directory for this test run.") -def pytest_namespace(): - """keeping this one works around a deeper startup issue in pytest - - i tried to find it for a while but the amount of time turned unsustainable, - so i put a hack in to revisit later - """ - return {} - - def pytest_configure(config): __import__('pytest').config = config # compatibiltiy