forked from publiclab/plots2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove coveralls, add codecov (publiclab#5954)
* Remove coveralls, add codecov * Add env variable * Comment reporting lines * Change env variable * Remove coveralls from rake file * Fix travis and rakefile * Remove project for codecov * Remove old reports before running * typo replace omment with comment (publiclab#7042) * typo replace omment with comment * Update blog.css * Update .travis.yml * Update .travis.yml * add codecov branch to travis for debugging Co-authored-by: Uzay-G <[email protected]> Co-authored-by: Jeffrey Warren <[email protected]>
- Loading branch information
1 parent
dac1499
commit 8ecd98f
Showing
8 changed files
with
48 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
comment: | ||
layout: "reach, diff, flags, files" | ||
behavior: default | ||
require_changes: false # if true: only post the comment if coverage changes | ||
require_base: no # [yes :: must have a base report to post] | ||
require_head: yes # [yes :: must have a head report to post] | ||
branches: null # branch names that can post comment | ||
coverage: | ||
status: | ||
project: on | ||
patch: on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
SimpleCov.start | ||
|
||
if ENV['CI'] == 'true' | ||
require 'codecov' | ||
SimpleCov.formatter = SimpleCov::Formatter::Codecov | ||
else | ||
SimpleCov.formatter = SimpleCov::Formatter::HTMLFormatter | ||
end | ||
|
||
SimpleCov.start 'rails' do | ||
add_group 'Units', 'app/models' | ||
add_group 'Functionals', 'app/controllers' | ||
add_group 'Services', 'app/services' | ||
add_group 'Libraries', 'lib/' | ||
|
||
add_filter '/test/' | ||
add_filter '/config/' | ||
add_filter '/db/' | ||
add_filter '/vendor/' | ||
add_filter '/log/' | ||
add_filter '/tmp/' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
font-size:4em; | ||
margin-top:100px; | ||
color:#326; | ||
line-height:1.3em; | ||
line-height:1.3em | ||
} | ||
|
||
.blog h1 { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters