Update to latest CodeClimate (#478)

* Update to latest CodeClimate
* SpecHelper: drop CodeClimate formatter
This commit is contained in:
Olle Jonsson 2017-02-08 21:09:23 +01:00 committed by GitHub
parent acf1c1604a
commit 1e9e72f1a5
3 changed files with 4 additions and 4 deletions

View File

@ -32,3 +32,5 @@ addons:
code_climate: code_climate:
repo_token: repo_token:
secure: iMpV5IAvH+/EVGZrpWnt2BnmNFzSbsRcIumsr4ZyLC8N5nrCSXyjCSy0g48btL3Sj0bSgK9hcrJsmrFd2bkqFleyAcPAzNyUQzBuIRZx47O8yFmbZ+Pj+l3+KOlmcbzJNHfDfxkxuWTmTAcSDfsiyApin721T/ey3SUuwKpZNUc= secure: iMpV5IAvH+/EVGZrpWnt2BnmNFzSbsRcIumsr4ZyLC8N5nrCSXyjCSy0g48btL3Sj0bSgK9hcrJsmrFd2bkqFleyAcPAzNyUQzBuIRZx47O8yFmbZ+Pj+l3+KOlmcbzJNHfDfxkxuWTmTAcSDfsiyApin721T/ey3SUuwKpZNUc=
after_success:
- bundle exec codeclimate-test-reporter

View File

@ -17,7 +17,7 @@ group :development do
end end
group :test do group :test do
gem "codeclimate-test-reporter", "~>0.4" gem "codeclimate-test-reporter", "~> 1.0"
gem "coveralls", "~>0.8", require: false gem "coveralls", "~>0.8", require: false
gem "json" gem "json"
gem "multi_json" gem "multi_json"

View File

@ -16,7 +16,6 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
# #
require "codeclimate-test-reporter"
require "simplecov" require "simplecov"
require "coveralls" require "coveralls"
require "vcr" require "vcr"
@ -28,8 +27,7 @@ end
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
Coveralls::SimpleCov::Formatter, Coveralls::SimpleCov::Formatter,
SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::HTMLFormatter
CodeClimate::TestReporter::Formatter
]) ])
SimpleCov.start do SimpleCov.start do
add_filter "gemfiles/" add_filter "gemfiles/"