Reduced default verbosity for tests.

Using -vv can generate more than 170k when loading a couple of libs.
This commit is contained in:
Salvador E. Tropea 2020-07-31 11:56:21 -03:00
parent bb5750df13
commit ae47afa695
1 changed files with 2 additions and 1 deletions

View File

@ -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: