aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 3c31963..c4f7c9e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -27,6 +27,8 @@ after_success: |
sudo make install &&
cd ../.. &&
rm -rf kcov-master &&
- for file in target/debug/deps/*; do mkdir -p "target/cov/$(basename $file)"; kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done &&
+ cargo clean &&
+ mkdir -p target/cov &&
+ kcov --exclude-pattern=/.cargo,/usr/lib --verify target/cov cargo test --all &&
bash <(curl -s https://codecov.io/bash) &&
echo "Uploaded code coverage"