File tree 4 files changed +3
-21
lines changed
contrib/travis/data/gem_files
4 files changed +3
-21
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,6 @@ group :development, :test do
50
50
51
51
# Code coverage
52
52
gem 'simplecov' , '~> 0.9.1'
53
- gem 'simplecov-rcov'
54
-
55
- # Junit results
56
- gem 'ci_reporter_rspec' , '~> 1.0.0'
57
53
58
54
# Publish to Coveralls
59
55
gem 'coveralls' , require : false
Original file line number Diff line number Diff line change @@ -45,10 +45,6 @@ group :development, :test do
45
45
46
46
# Code coverage
47
47
gem 'simplecov', '~> 0.9.1'
48
- gem 'simplecov-rcov'
49
-
50
- # Junit results
51
- gem 'ci_reporter_rspec', '~> 1.0.0'
52
48
53
49
# Publish to Coveralls
54
50
gem 'coveralls', require: false
Original file line number Diff line number Diff line change 1
1
namespace :redmine_git_hosting do
2
2
3
3
namespace :ci do
4
- begin
5
- require 'ci/reporter/rake/rspec'
6
4
7
- RSpec ::Core ::RakeTask . new do |task |
8
- task . rspec_opts = 'plugins/redmine_git_hosting/spec --color'
9
- end
10
- rescue Exception => e
11
- else
12
- ENV [ 'CI_REPORTS' ] = Rails . root . join ( 'junit' ) . to_s
5
+ RSpec ::Core ::RakeTask . new do |task |
6
+ task . rspec_opts = 'plugins/redmine_git_hosting/spec --color'
13
7
end
14
8
15
9
desc 'Check unit tests results'
@@ -46,7 +40,7 @@ namespace :redmine_git_hosting do
46
40
end
47
41
end
48
42
49
- task all : [ 'ci:setup:rspec' , ' spec', 'check_unit_tests_results' ]
43
+ task all : [ 'spec' , 'check_unit_tests_results' ]
50
44
51
45
def ls_dir ( dir )
52
46
puts "* ls -hal #{ dir } "
@@ -56,9 +50,7 @@ namespace :redmine_git_hosting do
56
50
57
51
end
58
52
59
-
60
53
task default : 'redmine_git_hosting:ci:all'
61
- task spec : 'redmine_git_hosting:ci:all'
62
54
task rspec : 'redmine_git_hosting:ci:all'
63
55
task test : 'redmine_git_hosting:ci:all'
64
56
Original file line number Diff line number Diff line change 1
1
unless ENV [ 'DISABLE_COVERAGE' ] == 'true'
2
2
require 'simplecov'
3
- require 'simplecov-rcov'
4
3
require 'coveralls'
5
4
require 'codeclimate-test-reporter'
6
5
7
6
## Configure SimpleCov
8
7
SimpleCov . formatter = SimpleCov ::Formatter ::MultiFormatter [
9
8
SimpleCov ::Formatter ::HTMLFormatter ,
10
- SimpleCov ::Formatter ::RcovFormatter
11
9
# Coveralls::SimpleCov::Formatter,
12
10
# CodeClimate::TestReporter::Formatter
13
11
]
You can’t perform that action at this time.
0 commit comments