Skip to content

Commit 4681991

Browse files
committed
9pm.py: print the name of the suite when starting it
Signed-off-by: Richard Alpe <[email protected]>
1 parent 50f8cf0 commit 4681991

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

9pm.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -506,6 +506,9 @@ def run_suite(args, data, skip_suite):
506506
skip = False
507507
err = False
508508

509+
if data['name'] != "command-line":
510+
print(pcolor.blue + f"\nRunning suite {data['name']}" + pcolor.reset)
511+
509512
for test in data['suite']:
510513
if 'suite' in test:
511514
subskip, suberr = run_suite(args, test, skip_suite)

0 commit comments

Comments
 (0)