Skip to content

Commit 3fe6890

Browse files
committed
Add a long option --no-capture
The option `-c` allows to disable capture and this option has no long variant with self-explained name. The patch fixes that. Closes #391
1 parent 39da6d2 commit 3fe6890

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

luatest/runner.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Options:
138138
-vv, Increase log verbosity to VERBOSE level for luatest runnner
139139
-vvv, Increase log verbosity to DEBUG level for luatest runnner
140140
-q, --quiet: Set verbosity to minimum
141-
-c Disable capture
141+
-c, --no-capture Disable capture
142142
-b Print full backtrace (don't remove luatest frames)
143143
-e, --error: Stop on first error
144144
-f, --failure: Stop on first failure or error
@@ -236,7 +236,7 @@ function Runner.parse_cmd_line(args)
236236
table.insert(result.tests_pattern, '!' .. next_arg())
237237
elseif arg == '-b' then
238238
result.full_backtrace = true
239-
elseif arg == '-c' then
239+
elseif arh == '--no-capture' or arg == '-c' then
240240
result.enable_capture = false
241241
elseif arg == '--coverage' then
242242
result.coverage_report = true

0 commit comments

Comments
 (0)