Commit ded4363e0ad0c42003238ee0a8903b80d2921187

Authored by mykhaly
1 parent 391d03c3

Add --loglevel trace:info to standard command args

Showing 1 changed file with 2 additions and 0 deletions
@@ -13,5 +13,7 @@ def runner(): @@ -13,5 +13,7 @@ def runner():
13 if not os.path.exists(directory): 13 if not os.path.exists(directory):
14 os.mkdir(directory) 14 os.mkdir(directory)
15 args += ['-d', directory] 15 args += ['-d', directory]
  16 + if '-L' not in args and '--loglevel' not in args:
  17 + args += ['--loglevel', 'trace:info']
16 args.append(os.path.join(os.path.dirname(__file__), 'tests_files')) 18 args.append(os.path.join(os.path.dirname(__file__), 'tests_files'))
17 return run_cli(args) 19 return run_cli(args)
Please register or login to post a comment