Skip to content

Commit 0e26e8c

Browse files
authored
Merge pull request #440 from rsarm/frontend/inexistent-test-file
[bugfix] Convert message for inexistent test files to warning
2 parents 404f4a7 + 972ab84 commit 0e26e8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reframe/frontend/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ def main():
319319
for d in options.checkpath:
320320
d = os.path.expandvars(d)
321321
if not os.path.exists(d):
322-
printer.info("%s: path `%s' does not exist. Skipping...\n" %
323-
(argparser.prog, d))
322+
printer.warning("%s: path `%s' does not exist. Skipping..." %
323+
(argparser.prog, d))
324324
continue
325325

326326
load_path.append(d)

0 commit comments

Comments
 (0)