From 7e33f324e1d1de31a69d16dc9f27ec223523c6e8 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Thu, 25 Jul 2019 20:57:32 +0900 Subject: [PATCH] Get rid of failures about coverage Run test suites explicitly instead of auto-running, to get rid of failures when simplecov is not installed but COVERAGE is set. --- tool/test/runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/test/runner.rb b/tool/test/runner.rb index 15b2cdd9fa..1ee4fdf8c6 100644 --- a/tool/test/runner.rb +++ b/tool/test/runner.rb @@ -19,4 +19,4 @@ when "-e" else dir = File.expand_path("..", $0) end -Test::Unit::AutoRunner.new(true, dir) +exit Test::Unit::AutoRunner.run(true, dir)