Skip to content

Commit

Permalink
fixed kcov not finding analysis data
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbepop committed May 20, 2017
1 parent 12005a5 commit 0335058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ after_success: |
cd ../.. &&
rm -rf kcov-master &&
ls -al target/debug &&
for file in target/debug/string-interner*; do mkdir -p "target/cov/$(basename $file)"; kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
for file in target/debug/string_interner*; do mkdir -p "target/cov/$(basename $file)"; kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"

0 comments on commit 0335058

Please sign in to comment.