Skip to content
Snippets Groups Projects
Commit 61653245 authored by Laurent Dufour's avatar Laurent Dufour Committed by Chris Burr
Browse files

Add suggestion to use qmtexec if .qmt file is given to lbexec

parent 91073179
No related branches found
No related tags found
1 merge request!4081Add suggestion to use qmtexec if .qmt file is given to lbexec
......@@ -305,6 +305,10 @@ def _suggest_module_fix(spec: str, module_name: str,
corrected = shlex.join(argv)
_print_diff(original, corrected)
click.echo(err=True)
elif spec[-4:] == ".qmt":
log_error(
"Is it possible you are trying to run a .qmt test? If so, use qmtexec."
)
else:
log_error("Failed to find a suggested fix")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment