Skip to content

Commit 10b6b46

Browse files
author
Dorian Birraux
committed
Merge pull request #235 in LCL/wolframclientforpython from bugfix/github-18-setup-test-fails to master
* commit '1c5758c0d97bd8d7ee2af08587a666057bc17c7f': verbosity = 0 is not overriden anymore Set default verbosity in test if not set
2 parents 80f8d47 + 1c5758c commit 10b6b46

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

wolframclient/cli/commands/test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ def handle(self, *args, **opts):
7070

7171
# verbosity > 1 print test name
7272
verbosity = opts.get("verbosity")
73+
# for consistency with parser, set default to 2. This is only possible when calling test from setup.py
74+
if verbosity is None:
75+
verbosity = 2
7376
xml_path = opts.get("xml_output_dir")
7477
# if opts.get('produce_xml'):
7578
if xml_path is not None or opts.get("produce_xml"):

0 commit comments

Comments
 (0)