File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1616- Add ` treegen ` helper as a tree generator (gh-364 ).
1717- Add support for declarative configuration to ` server.lua ` (gh-367 ).
1818- Make ` assert_covers ` recursive (gh-379 ).
19+ - Add alias ` --no-capture ` for the option ` -c ` (gh-391 ).
1920
2021## 1.0.1
2122
Original file line number Diff line number Diff 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 arg == ' --no-capture ' or arg == ' - c' then
240240 result .enable_capture = false
241241 elseif arg == ' --coverage' then
242242 result .coverage_report = true
You can’t perform that action at this time.
0 commit comments