tests/_runner.lua: write "Running step …" to stderr

This commit is contained in:
Daniel Hahler 2017-08-10 16:01:08 +02:00
parent afb81640b5
commit fbea595f60
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ runner.run_steps = function(steps, options)
step_count = step_count + 1
local step_as_string = step..'/'..#steps..' (@'..step_count..')'
if verbose then
print(string.format('Running step %s..', step_as_string))
io.stderr:write(string.format('Running step %s..\n', step_as_string))
end
-- Call the current step's function.