diff --git a/features/support/env.rb b/features/support/env.rb index 4b76faab56..6766077784 100644 --- a/features/support/env.rb +++ b/features/support/env.rb @@ -4,7 +4,7 @@ end if ENV['COVERALLS'] require 'coveralls' - Coveralls.wear_merged!('rails') + Coveralls.wear_merged! end ENV['RAILS_ENV'] = 'test' diff --git a/lib/tasks/test.rake b/lib/tasks/test.rake index c868e1c431..583f4a876d 100644 --- a/lib/tasks/test.rake +++ b/lib/tasks/test.rake @@ -9,5 +9,5 @@ unless Rails.env.production? require 'coveralls/rake/task' Coveralls::RakeTask.new desc "GITLAB | Run all tests on CI with simplecov" - task :test_ci => [:spec, :spinach, 'coveralls:push'] + task :test_ci => [:spinach, :spec, 'coveralls:push'] end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 60322b67a7..773de6628b 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -4,7 +4,7 @@ end if ENV['COVERALLS'] require 'coveralls' - Coveralls.wear_merged!('rails') + Coveralls.wear_merged! end ENV["RAILS_ENV"] ||= 'test'