]> git.openstreetmap.org Git - rails.git/commitdiff
Merge remote-tracking branch 'upstream/pull/2167'
authorTom Hughes <tom@compton.nu>
Wed, 6 Mar 2019 17:23:46 +0000 (17:23 +0000)
committerTom Hughes <tom@compton.nu>
Wed, 6 Mar 2019 17:23:46 +0000 (17:23 +0000)
CONTRIBUTING.md
test/test_helper.rb

index acb7807461ea56621f0bf950e324ac110965e5d3..43b74224fae6b88aa09495e0a2f12beb94cc44f6 100644 (file)
@@ -35,12 +35,7 @@ You can run the existing test suite with:
 bundle exec rake test
 ```
 
-You can generate test coverage stats with:
-
-```
-sudo gem install rcov
-rcov -x gems test/*/*.rb
-```
+You can view test coverage statistics by browsing the `coverage` directory.
 
 The tests are automatically run on Pull Requests and other commits with the
 results shown on [Travis CI](https://travis-ci.org/openstreetmap/openstreetmap-website).
index 747edf016056b30c7a0e10b347ed72cc4ec9b466..e66d782ff06bf0b2c2e5eb8417aca58a617ebeea 100644 (file)
@@ -1,6 +1,21 @@
 require "coveralls"
 Coveralls.wear!("rails")
 
+# Override the simplecov output message, since it is mostly unwanted noise
+module SimpleCov
+  module Formatter
+    class HTMLFormatter
+      def output_message(_result); end
+    end
+  end
+end
+
+# Output both the local simplecov html and the coveralls report
+SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new(
+  [SimpleCov::Formatter::HTMLFormatter,
+   Coveralls::SimpleCov::Formatter]
+)
+
 ENV["RAILS_ENV"] = "test"
 require_relative "../config/environment"
 require "rails/test_help"