1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2025-12-10 08:46:41 +01:00

Replace coveralls with Codacy

This commit is contained in:
Philipp Fischbeck 2019-02-05 16:01:15 +01:00
parent 7f579b739b
commit ee320b281c
4 changed files with 9 additions and 16 deletions

View File

@ -1 +0,0 @@
service_name: travis-ci

View File

@ -34,8 +34,8 @@ gem 'sdoc', '~> 1.0.0', group: :doc
gem 'web-console', '~> 3.7.0', group: :development gem 'web-console', '~> 3.7.0', group: :development
# Use Coveralls for coverage documentation # Use Codacy for coverage
gem 'coveralls', '~> 0.8.22', require: false gem 'codacy-coverage', :require => false
gem 'bootstrap-sass', '~> 3.4.0' gem 'bootstrap-sass', '~> 3.4.0'
gem 'autoprefixer-rails', '~> 9.4.6' gem 'autoprefixer-rails', '~> 9.4.6'

View File

@ -58,6 +58,8 @@ GEM
autoprefixer-rails (>= 5.2.1) autoprefixer-rails (>= 5.2.1)
sassc (>= 2.0.0) sassc (>= 2.0.0)
builder (3.2.3) builder (3.2.3)
codacy-coverage (2.1.0)
simplecov
codemirror-rails (5.16.0) codemirror-rails (5.16.0)
railties (>= 3.0, < 6.0) railties (>= 3.0, < 6.0)
coffee-rails (4.2.2) coffee-rails (4.2.2)
@ -68,12 +70,6 @@ GEM
execjs execjs
coffee-script-source (1.12.2) coffee-script-source (1.12.2)
concurrent-ruby (1.1.4) concurrent-ruby (1.1.4)
coveralls (0.8.22)
json (>= 1.8, < 3)
simplecov (~> 0.16.1)
term-ansicolor (~> 1.3)
thor (~> 0.19.4)
tins (~> 1.6)
crass (1.0.4) crass (1.0.4)
devise (4.5.0) devise (4.5.0)
bcrypt (~> 3.0) bcrypt (~> 3.0)
@ -102,7 +98,7 @@ GEM
rails-dom-testing (>= 1, < 3) rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0) railties (>= 4.2.0)
thor (>= 0.14, < 2.0) thor (>= 0.14, < 2.0)
json (1.8.6) json (2.1.0)
jwt (2.1.0) jwt (2.1.0)
loofah (2.2.3) loofah (2.2.3)
crass (~> 1.0.2) crass (~> 1.0.2)
@ -213,12 +209,9 @@ GEM
sqlite3 (1.3.13) sqlite3 (1.3.13)
sqlite3 (1.3.13-x64-mingw32) sqlite3 (1.3.13-x64-mingw32)
sqlite3 (1.3.13-x86-mingw32) sqlite3 (1.3.13-x86-mingw32)
term-ansicolor (1.7.1)
tins (~> 1.0)
thor (0.19.4) thor (0.19.4)
thread_safe (0.3.6) thread_safe (0.3.6)
tilt (2.0.9) tilt (2.0.9)
tins (1.20.2)
turbolinks (5.2.0) turbolinks (5.2.0)
turbolinks-source (~> 5.2) turbolinks-source (~> 5.2)
turbolinks-source (5.2.0) turbolinks-source (5.2.0)
@ -253,9 +246,9 @@ DEPENDENCIES
bh (~> 1.3.6) bh (~> 1.3.6)
bootsnap bootsnap
bootstrap-sass (~> 3.4.0) bootstrap-sass (~> 3.4.0)
codacy-coverage
codemirror-rails (~> 5.16.0) codemirror-rails (~> 5.16.0)
coffee-rails (~> 4.2.2) coffee-rails (~> 4.2.2)
coveralls (~> 0.8.22)
devise (~> 4.5.0) devise (~> 4.5.0)
devise-bootstrap-views (~> 0.0.11) devise-bootstrap-views (~> 0.0.11)
jbuilder (~> 2.8.0) jbuilder (~> 2.8.0)

View File

@ -1,5 +1,6 @@
require 'coveralls' require 'codacy-coverage'
Coveralls.wear!('rails')
Codacy::Reporter.start
ENV['RAILS_ENV'] ||= 'test' ENV['RAILS_ENV'] ||= 'test'
require File.expand_path('../../config/environment', __FILE__) require File.expand_path('../../config/environment', __FILE__)