File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ def pytest_addoption(parser):
114
114
)
115
115
group ._addoption (
116
116
"--fulltrace" ,
117
- "--fulltrace " ,
117
+ "--full-trace " ,
118
118
action = "store_true" ,
119
119
default = False ,
120
120
help = "don't cut any tracebacks (default is to cut)." ,
@@ -692,7 +692,7 @@ def _report_keyboardinterrupt(self):
692
692
else :
693
693
excrepr .reprcrash .toterminal (self ._tw )
694
694
self ._tw .line (
695
- "(to show a full traceback on KeyboardInterrupt use --fulltrace )" ,
695
+ "(to show a full traceback on KeyboardInterrupt use --full-trace )" ,
696
696
yellow = True ,
697
697
)
698
698
Original file line number Diff line number Diff line change @@ -233,7 +233,7 @@ def test_interrupt_me():
233
233
)
234
234
else :
235
235
result .stdout .fnmatch_lines (
236
- ["(to show a full traceback on KeyboardInterrupt use --fulltrace )" ]
236
+ ["(to show a full traceback on KeyboardInterrupt use --full-trace )" ]
237
237
)
238
238
result .stdout .fnmatch_lines (["*KeyboardInterrupt*" ])
239
239
You can’t perform that action at this time.
0 commit comments