-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2de3eee
commit 0626cac
Showing
3 changed files
with
38 additions
and
0 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
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,16 @@ | ||
# A SimpleCov and Codecov configuration to track code coverage in your extension | ||
# | ||
# Include it AT THE TOP of your spec/spec_helper.rb: | ||
# | ||
# require 'solidus_support/extension/coverage' | ||
# | ||
# Note that things may not work properly if you don't include this at the very top! | ||
# | ||
|
||
require 'simplecov' | ||
SimpleCov.start 'rails' | ||
|
||
if ENV['CI'] | ||
require 'codecov' | ||
SimpleCov.formatter = SimpleCov::Formatter::Codecov | ||
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