From f970815645b45f5317609e57af452b886077722d Mon Sep 17 00:00:00 2001 From: shortcutme Date: Mon, 15 Apr 2019 22:48:16 +0200 Subject: [PATCH] Run tests in debug mode --- src/Test/conftest.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Test/conftest.py b/src/Test/conftest.py index 79389d65..2d680cb2 100644 --- a/src/Test/conftest.py +++ b/src/Test/conftest.py @@ -75,6 +75,7 @@ fmt = logging.Formatter(fmt='+%(relative)ss %(levelname)-8s %(name)s %(message)s from Plugin import PluginManager config.data_dir = TEST_DATA_PATH # Use test data for unittests +config.debug = True os.chdir(os.path.abspath(os.path.dirname(__file__) + "/../..")) # Set working dir @@ -85,6 +86,7 @@ config.loadPlugins() config.parse(parse_config=False) # Parse again to add plugin configuration options config.action = "test" +config.debug = True config.debug_socket = True # Use test data for unittests config.verbose = True # Use test data for unittests config.tor = "disable" # Don't start Tor client