Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Commit

Permalink
Travis.yml fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenldl committed Apr 1, 2018
1 parent 32bf044 commit 99bb722
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ after_success: |
for file in target/debug/rsbx*; do if [[ $file == *.d ]]; then continue; fi; kcov --exclude-pattern=/.cargo,/usr/lib --verify "$HOME/target/cov/rsbx" "$file"; done &&
wget https://codecov.io/bash -O codecov_uploader &&
chmod u+x codecov_uploader &&
codecov_uploader -s "$HOME/target/cov/rsbx" &&
./codecov_uploader -s "$HOME/target/cov/rsbx" &&
echo "Uploaded code coverage to Codecov" &&
for file in target/debug/rsbx*; do if [[ $file == *.d ]]; then continue; fi; kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo,/usr/lib --verify "$HOME/target/cov/rsbx" "$file"; done &&
echo "Uploaded code coverage to Coveralls"
Expand Down
2 changes: 2 additions & 0 deletions cov_tests/dev_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ if [[ $? != 0 ]]; then
test_failed=$[$test_failed+1]
fi

exit 0

# nometa tests
echo "========================================"
echo "Starting nometa tests"
Expand Down

0 comments on commit 99bb722

Please sign in to comment.