Skip to content

Commit

Permalink
Redirect test run stderr to dev/null
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexB52 committed Feb 15, 2025
1 parent 3668fef commit 41d31f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/retest/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def sync(added:, removed:)

def system_run(command)
log("\n")
@pid = spawn(command)
@pid = spawn(command, err: File::NULL)
Process.wait
@pid = nil
result = $?.exitstatus&.zero? ? :tests_pass : :tests_fail
Expand Down

0 comments on commit 41d31f4

Please sign in to comment.