-
-
Notifications
You must be signed in to change notification settings - Fork 54
Add behavior tests to CI #239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
92c4964
Spec: Show nil value as nil, not as an empty string
neomilium da01249
CI: Run unit and behavior tests
neomilium a4b2bf8
Simplecov: Move configuration to `.simplecov` file
neomilium ec4e064
Gemfile: Add simplecov to development deps
neomilium f4c6669
Cucumber: Use simplecov
neomilium 069604e
Code coverage: Grab results when using Aruba
neomilium 7e5f404
Code coverage: Allow developer to use simplecov and CI to use codecov
neomilium 541d140
Simplecov: Track more files and categorize them using groups
neomilium 68b7578
Simplecov: Centralize filters setup
neomilium File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,46 @@ | ||
| SimpleCov.start do | ||
| if ENV['SIMPLECOV_ROOT'] | ||
| SimpleCov.root(ENV['SIMPLECOV_ROOT']) | ||
|
|
||
| filters.clear # This will remove the :root_filter and :bundler_filter that come via simplecov's defaults | ||
|
|
||
| # Because simplecov filters everything outside of the SimpleCov.root | ||
| # This should be added, cf. | ||
| # https://github.com/colszowka/simplecov#default-root-filter-and-coverage-for-things-outside-of-it | ||
| add_filter do |src| | ||
| !(src.filename =~ /^#{SimpleCov.root}/) | ||
| end | ||
| end | ||
|
|
||
| add_group 'Source code', 'lib' | ||
|
|
||
| add_group 'Unit tests', 'spec' | ||
|
|
||
| add_group 'Behavior tests', 'features' | ||
| add_filter '/features/support/env.rb' | ||
|
|
||
| enable_coverage :branch | ||
|
|
||
| # do not track vendored files | ||
| add_filter '/vendor' | ||
| add_filter '/.vendor' | ||
|
|
||
| # exclude anything that is not in lib, spec or features directories | ||
| add_filter do |src| | ||
| !(src.filename =~ /^#{SimpleCov.root}\/(lib|spec|features)/) | ||
| end | ||
|
|
||
| track_files '**/*.rb' | ||
| end | ||
|
|
||
| if ENV['CODECOV'] | ||
| require 'simplecov-console' | ||
| require 'codecov' | ||
|
|
||
| SimpleCov.formatters = [ | ||
| SimpleCov::Formatter::Console, | ||
| SimpleCov::Formatter::Codecov, | ||
| ] | ||
| end | ||
|
|
||
| # vim: filetype=ruby |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,25 +1,3 @@ | ||
| begin | ||
| require 'simplecov' | ||
| require 'simplecov-console' | ||
| require 'codecov' | ||
| rescue LoadError | ||
| else | ||
| SimpleCov.start do | ||
| track_files 'lib/**/*.rb' | ||
|
|
||
| add_filter '/spec' | ||
|
|
||
| enable_coverage :branch | ||
|
|
||
| # do not track vendored files | ||
| add_filter '/vendor' | ||
| add_filter '/.vendor' | ||
| end | ||
|
|
||
| SimpleCov.formatters = [ | ||
| SimpleCov::Formatter::Console, | ||
| SimpleCov::Formatter::Codecov, | ||
| ] | ||
| end | ||
| require 'simplecov' | ||
|
|
||
| require 'modulesync' |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.