We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-v
1 parent c2bce8e commit 7f1ac39Copy full SHA for 7f1ac39
reframe/core/decorators.py
@@ -40,8 +40,9 @@ def _instantiate_all():
40
_instantiate(cls, args)
41
except Exception as e:
42
frame = user_frame(sys.exc_info()[2])
43
- msg = 'skipping test due to errors: %s\n' % cls.__name__
44
- msg += ' %s:%s' % (frame.filename, frame.lineno)
+ msg = "skipping test due to errors: %s: " % cls.__name__
+ msg += "use `-v' for more information\n"
45
+ msg += " FILE: %s:%s" % (frame.filename, frame.lineno)
46
getlogger().warning(msg)
47
getlogger().verbose(traceback.format_exc())
48
0 commit comments