Skip to content

Commit 07a5246

Browse files
author
Dorian Birraux
committed
Set default verbosity in test if not set
CLI cannot trigger this error but running python setup.py test can.
1 parent b98bcb8 commit 07a5246

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wolframclient/cli/commands/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def handle(self, *args, **opts):
6969
)
7070

7171
# verbosity > 1 print test name
72-
verbosity = opts.get("verbosity")
72+
verbosity = opts.get("verbosity") or 1;
7373
xml_path = opts.get("xml_output_dir")
7474
# if opts.get('produce_xml'):
7575
if xml_path is not None or opts.get("produce_xml"):

0 commit comments

Comments
 (0)