aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/.simplecov
AgeCommit message (Collapse)Author
2017-12-08.simplecov: filter more filters/folders.Mike McQuaid
This is stuff that can never be exercised by our test suite but is exercised by `brew test-bot` so remove it from the coverage checks.
2017-10-08Fix comment location.Markus Reiter
2017-10-08Don’t track files in `test` and `vendor`.Markus Reiter
2017-03-05Move coverage reporting into `brew tests`.Markus Reiter
2017-03-05Remove `dev-cmd/tests.rb` from test coverage.Markus Reiter
2017-02-18.simplecov: require English with capital EBob W. Hogg
On case-sensitive filesystems, require "english" will fail with "cannot load such file -- english"
2016-09-25RuboCop: Style/SpecialGlobalVarsMarkus Reiter
2016-09-23tests: speed up integration tests coverageAlyssa Ross
Previously, .simplecov called `SimpleCov.result` to store the coverage result, and ignored the return value. `SimpleCov.result`'s return can be slow to calculate, which wastes a lot of time when it's ignored. This commit extracts the code needed to store the SimpleCov result from `SimpleCov.result`, and calls it directly, without doing the busywork to compute the return value every time. In my testing, this more than halves the time taken to run all the integration tests.
2016-09-23Fix coverage reporting.Markus Reiter
2016-09-21test, cask-tests: update simplecov pathsAlyssa Ross
2016-09-20tests, cask-tests: (maybe) fix coverageAlyssa Ross