From d4185626478f6964fed8948174ebfad49d666183 Mon Sep 17 00:00:00 2001 From: debris Date: Mon, 1 Feb 2016 12:13:41 +0100 Subject: [PATCH] add rpc module to travis tests and to coverage check --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index d2bfdd0db..21a77f684 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,6 +27,7 @@ script: - cargo test --release -p ethash --verbose - cargo test --release -p ethcore-util --verbose - cargo test --release -p ethcore --verbose +- cargo test --release -p ethcore-rpc --verbose --features rpc - cargo test --release --verbose - cargo bench --no-run after_success: | @@ -38,6 +39,8 @@ after_success: | ./kcov-master/tmp/usr/local/bin/kcov --exclude-pattern /.cargo,/root/.multirust target/kcov target/debug/deps/ethash-* && cargo test --no-run -p ethcore --no-default-features && ./kcov-master/tmp/usr/local/bin/kcov --exclude-pattern /.cargo,/root/.multirust target/kcov target/debug/deps/ethcore-* && + cargo test --no-run -p ethcore-rpc --features rpc + ./kcov-master/tmp/usr/local/bin/kcov --exclude-pattern /.cargo,/root/.multirust target/kcov target/debug/deps/ethcore_rpc-* && cargo test --no-run && ./kcov-master/tmp/usr/local/bin/kcov --coveralls-id=${COVERALLS_TOKEN} --exclude-pattern /.cargo,/root/.multirust target/kcov target/debug/parity-* [ $TRAVIS_BRANCH = master ] &&