.travis.yml in spacex-1.0.1 vs .travis.yml in spacex-1.0.2
- old
+ new
@@ -1,6 +1,21 @@
-language: ruby
+env:
+ global:
+ - CC_TEST_REPORTER_ID=$CC_TEST_REPORTER_ID
+language: ruby
+rvm:
+ - 2.4.2
cache: bundler
+sudo: required
-rvm:
- - 2.4.1
+before_script:
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
+ - chmod +x ./cc-test-reporter
+ - ./cc-test-reporter before-build
+
+script:
+ - bundle exec rspec
+
+after_script:
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
+