From aec4e0723a909f3db42475d3c97bb5204aeaffef Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Wed, 27 Jan 2016 22:03:17 +0100 Subject: [PATCH] tests: track all files --- Library/Homebrew/test/.simplecov | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Library/Homebrew/test/.simplecov b/Library/Homebrew/test/.simplecov index 8df416a200..b42d29f8f7 100644 --- a/Library/Homebrew/test/.simplecov +++ b/Library/Homebrew/test/.simplecov @@ -11,6 +11,13 @@ SimpleCov.start do add_filter "Homebrew/compat/" add_filter "Homebrew/test/" add_filter "Homebrew/vendor/" + add_filter "Taps/" + + # Not using this during integration tests makes the tests 4x times faster + # without changing the coverage. + unless ENV["HOMEBREW_INTEGRATION_TEST"] + track_files "#{SimpleCov.root}/**/*.rb" + end end if ENV["HOMEBREW_INTEGRATION_TEST"]