Merge pull request #53 from cmrd-senya/travis-exit-code

Fix CI script false positive return code
This commit is contained in:
Benjamin Neff 2017-01-17 21:03:19 +01:00 committed by GitHub
commit 639a0ef705

View file

@ -9,5 +9,7 @@ if [[ ${TRAVIS_RUBY_VERSION} == "2.1" ]]; then
else
# ruby >= 2.2
bundle exec rake --trace
test_exit_code=$?
bundle exec codeclimate-test-reporter
exit $test_exit_code
fi