From d0201fe7c76e35ca6628fd2126dacf4914f0139d Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Fri, 22 Mar 2019 03:14:33 -0400 Subject: [PATCH] base integration test class should default to VERBOSITY=WARN, not DEBUG --- tests/integration/testcase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/testcase.py b/tests/integration/testcase.py index 75ce9c284..84abf8e32 100644 --- a/tests/integration/testcase.py +++ b/tests/integration/testcase.py @@ -62,7 +62,7 @@ class CommandTestCase(IntegrationTestCase): timeout = 180 LEDGER = lbrynet.wallet MANAGER = LbryWalletManager - VERBOSITY = logging.DEBUG + VERBOSITY = logging.WARN async def asyncSetUp(self): await super().asyncSetUp()