File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 61
61
" -k"
62
62
" -m"
63
63
" --mypy"
64
- " --exitfirst" ))
64
+ " --exitfirst"
65
+ " --showlocals" ))
65
66
66
67
(defun test-cockpit-python--test-project-command (_ args )
67
68
" Make the test project command from ARGS."
155
156
(" -c" " print coverage report" " --cov-report=term-missing" )
156
157
(" -r" " report output of passed tests" " -rFP" )
157
158
(" -w" " don't output warnings" " --disable-warnings" )
158
- (" -n" " don't capture output" " --capture=no" )]])
159
+ (" -n" " don't capture output" " --capture=no" )
160
+ (" -L" " show locals in tracebacks" " --showlocals" )]])
159
161
160
162
(defun test-cockpit-python--find-last-unindented-line ()
161
163
" Find the last unindented line from current point in current buffer."
Original file line number Diff line number Diff line change @@ -403,4 +403,5 @@ async def test_first_outer():
403
403
(should (equal (aref (aref infix 1 ) 4 ) '(" -c" " print coverage report" " --cov-report=term-missing" )))
404
404
(should (equal (aref (aref infix 1 ) 5 ) '(" -r" " report output of passed tests" " -rFP" )))
405
405
(should (equal (aref (aref infix 1 ) 6 ) '(" -w" " don't output warnings" " --disable-warnings" )))
406
- (should (equal (aref (aref infix 1 ) 7 ) '(" -n" " don't capture output" " --capture=no" ))))))
406
+ (should (equal (aref (aref infix 1 ) 7 ) '(" -n" " don't capture output" " --capture=no" )))
407
+ (should (equal (aref (aref infix 1 ) 8 ) '(" -L" " show locals in tracebacks" " --showlocals" ))))))
You can’t perform that action at this time.
0 commit comments