File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Ignore RSpec examples
2
2
spec /examples.txt
3
+
4
+ # Ignore simplecov coverage report files
5
+ coverage
Original file line number Diff line number Diff line change 1
1
language : ruby
2
2
script :
3
3
- bundle exec rspec
4
+ cache : bundler
5
+ addons :
6
+ code_climate :
7
+ repo_token : 6a7954340b6bc12e5818877eecebc92c334a3b9fac45a9bcece948d31be4f07e
8
+ # regular test configuration
9
+ after_success :
10
+ - bundle exec codeclimate-test-reporter
Original file line number Diff line number Diff line change
1
+ require "simplecov"
2
+ SimpleCov . start
3
+
1
4
# This file was generated by the `rspec --init` command. Conventionally, all
2
5
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
3
6
# The generated `.rspec` file contains `--require spec_helper` which will cause
96
99
# test failures related to randomization by passing the same `--seed` value
97
100
# as the one that triggered the failure.
98
101
Kernel . srand config . seed
99
-
102
+
100
103
end
You can’t perform that action at this time.
0 commit comments