summaryrefslogtreecommitdiff
path: root/pytest.py
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2017-07-31 11:10:29 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2017-07-31 13:44:05 +0200
commitc68a89b4a78a4bd4ab5ab1b139f9fe5b002bdad8 (patch)
tree22d9d11f2cfad08927b1a23468c5e87843911423 /pytest.py
parentf1467f8f0385c17c02524b70e0bac949d4dbd116 (diff)
downloadpytest-c68a89b4a78a4bd4ab5ab1b139f9fe5b002bdad8.tar.gz
remove preinit, its no longer needed
Diffstat (limited to 'pytest.py')
-rw-r--r--pytest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pytest.py b/pytest.py
index 1c914a6ed..2b681b64b 100644
--- a/pytest.py
+++ b/pytest.py
@@ -7,7 +7,7 @@ pytest: unit and functional testing with Python.
# else we are imported
from _pytest.config import (
- main, UsageError, _preloadplugins, cmdline,
+ main, UsageError, cmdline,
hookspec, hookimpl
)
from _pytest.fixtures import fixture, yield_fixture
@@ -74,5 +74,4 @@ if __name__ == '__main__':
else:
from _pytest.compat import _setup_collect_fakemodule
- _preloadplugins() # to populate pytest.* namespace so help(pytest) works
_setup_collect_fakemodule()