We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcdd041 commit 502f439Copy full SHA for 502f439
1 file changed
.travis.yml
@@ -25,8 +25,16 @@ before_install:
25
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
26
- gem install bundler --version=1.17.3
27
28
+before_script:
29
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
30
+ - chmod +x ./cc-test-reporter
31
+ - ./cc-test-reporter before-build
32
+
33
script:
- - RAILS_ENV=test bundle exec rake spec && bundle exec codeclimate-test-reporter
34
+ - RAILS_ENV=test bundle exec rake spec
35
36
+after_script:
37
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
38
39
cache: bundler
40
sudo: false
0 commit comments