From ae47afa6952a19842583d606d4384df0520777aa Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Fri, 31 Jul 2020 11:56:21 -0300 Subject: [PATCH] Reduced default verbosity for tests. Using -vv can generate more than 170k when loading a couple of libs. --- tests/utils/context.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/utils/context.py b/tests/utils/context.py index 64baf499..fa7c40a2 100644 --- a/tests/utils/context.py +++ b/tests/utils/context.py @@ -157,7 +157,8 @@ class TestContext(object): os.environ['COVERAGE_FILE'] = os.path.join(os.getcwd(), '.coverage') cmd.append(os.path.abspath(os.path.dirname(os.path.abspath(__file__))+'/../../src/kiplot')) if not no_verbose: - cmd.append('-vv') + # One is enough, 2 can generate tons of data when loading libs + cmd.append('-v') if not no_board_file: cmd = cmd+['-b', filename if filename else self.board_file] if not no_yaml_file: