diff --git a/src/Test/conftest.py b/src/Test/conftest.py index c8739086..57c61f3a 100644 --- a/src/Test/conftest.py +++ b/src/Test/conftest.py @@ -63,9 +63,6 @@ config.debug = True os.chdir(os.path.abspath(os.path.dirname(__file__) + "/../..")) # Set working dir -all_loaded = PluginManager.plugin_manager.loadPlugins() -assert all_loaded, "Not all plugin loaded successfully" - config.loadPlugins() config.parse(parse_config=False) # Parse again to add plugin configuration options diff --git a/src/Test/pytest.ini b/src/Test/pytest.ini index 556389a2..0ffb385f 100644 --- a/src/Test/pytest.ini +++ b/src/Test/pytest.ini @@ -1,6 +1,6 @@ [pytest] python_files = Test*.py -addopts = -rsxX -v --durations=6 --no-print-logs --capture=fd +addopts = -rsxX -v --durations=6 --capture=fd markers = slow: mark a tests as slow. webtest: mark a test as a webtest.