diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-03-03 21:29:55 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-03-03 21:29:55 +0100 |
commit | 6c6081fd3f257a5510a4c318863d902595ead4d3 (patch) | |
tree | 64764ad74a6ae2eb2153990798a6594073f6cdb9 /.travis.yml | |
parent | 7cdfde89e020370472dc100ee3eaca346c2e31e9 (diff) | |
download | askama-6c6081fd3f257a5510a4c318863d902595ead4d3.tar.gz askama-6c6081fd3f257a5510a4c318863d902595ead4d3.tar.bz2 askama-6c6081fd3f257a5510a4c318863d902595ead4d3.zip |
Execute more tests for coverage
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index df12fea..3c31963 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,6 +27,6 @@ after_success: | sudo make install && cd ../.. && rm -rf kcov-master && - for file in target/debug/deps/askama*; do mkdir -p "target/cov/$(basename $file)"; kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done && + 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 && bash <(curl -s https://codecov.io/bash) && echo "Uploaded code coverage" |