Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
070a96f5
Commit
070a96f5
authored
Jun 30, 2016
by
Kamil Trzcinski
Committed by
Grzegorz Bizon
Jul 21, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update configuration of SimpleCov
parent
8cc7a2dd
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
16 deletions
+26
-16
.gitlab-ci.yml
.gitlab-ci.yml
+1
-0
features/support/env.rb
features/support/env.rb
+1
-0
scripts/merge-simplecov
scripts/merge-simplecov
+1
-3
spec/simplecov_env.rb
spec/simplecov_env.rb
+22
-13
spec/spec_helper.rb
spec/spec_helper.rb
+1
-0
No files found.
.gitlab-ci.yml
View file @
070a96f5
...
...
@@ -28,6 +28,7 @@ stages:
-
prepare
-
test
-
post-test
-
pages
# Prepare and merge knapsack tests
.knapsack-state
:
&knapsack-state
...
...
features/support/env.rb
View file @
070a96f5
require_relative
Rails
.
root
.
join
(
'spec'
,
'simplecov_env'
)
SimpleCov
.
start
if
ENV
[
'SIMPLECOV'
]
ENV
[
'RAILS_ENV'
]
=
'test'
require
'./config/environment'
...
...
scripts/merge-simplecov
View file @
070a96f5
...
...
@@ -58,8 +58,6 @@ def merged_result
result
end
SimpleCov
.
configure
do
merge_timeout
7200
end
require_relative
'../spec/simplecov_env'
merged_result
.
format!
spec/simplecov_env.rb
View file @
070a96f5
if
ENV
[
'SIMPLECOV'
]
require
'simplecov'
require
'simplecov'
SimpleCov
.
start
:rails
do
if
ENV
[
'CI_BUILD_NAME'
]
coverage_dir
"coverage/
#{
ENV
[
'CI_BUILD_NAME'
]
}
"
command_name
ENV
[
'CI_BUILD_NAME'
]
merge_timeout
7200
end
SimpleCov
.
configure
do
load_profile
:rails
add_filter
'/vendor/ruby/'
if
ENV
[
'CI_BUILD_NAME'
]
coverage_dir
"coverage/
#{
ENV
[
'CI_BUILD_NAME'
]
}
"
command_name
ENV
[
'CI_BUILD_NAME'
]
end
add_group
'Services'
,
'app/services'
add_group
'Finders'
,
'app/finders'
add_group
'Uploaders'
,
'app/uploaders'
add_group
'Validators'
,
'app/validators'
if
ENV
[
'CI'
]
SimpleCov
.
at_exit
do
# In CI environment don't generate formatted reports
# Only generate .resultset.json
SimpleCov
.
result
end
end
add_filter
'/vendor/ruby/'
add_group
'Services'
,
'app/services'
add_group
'Finders'
,
'app/finders'
add_group
'Uploaders'
,
'app/uploaders'
add_group
'Validators'
,
'app/validators'
merge_timeout
7200
end
spec/spec_helper.rb
View file @
070a96f5
require_relative
'simplecov_env'
SimpleCov
.
start
if
ENV
[
'SIMPLECOV'
]
ENV
[
"RAILS_ENV"
]
||=
'test'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment