diff --git a/.travis.yml b/.travis.yml index 68f54e2..4a6151a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,7 +65,8 @@ after_success: | make install DESTDIR=../../kcov-build && cd ../.. && rm -rf kcov-master && - for file in target/debug/imap-*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done && + ls target/debug/deps && + for file in target/debug/deps/imap*[^\.d]; do mkdir -p "target/cov/$(basename $file)"; ./kcov-build/usr/local/bin/kcov --exclude-pattern=/.cargo,/usr/lib --verify "target/cov/$(basename $file)" "$file"; done && bash <(curl -s https://codecov.io/bash) && echo "Uploaded code coverage"; fi diff --git a/tests/integration.rs b/tests/imap_integration.rs similarity index 100% rename from tests/integration.rs rename to tests/imap_integration.rs