diff options
author | James O'Beirne <james.obeirne@gmail.com> | 2015-10-10 22:41:19 -0700 |
---|---|---|
committer | James O'Beirne <james.obeirne@gmail.com> | 2015-11-11 10:33:43 -0800 |
commit | b5cbd396ca7214f4f944163ed314456038fdd818 (patch) | |
tree | 840fb2890c1b703c0b5d08d19a103003ae238eb4 /.travis.yml | |
parent | 3038eb63e8a674b4818cb5d5e461f1ccf4b2932f (diff) |
Add basic coverage reporting for RPC tests
Thanks to @MarcoFalke @dexX7 @laanwj for review.
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 8e9684826f..d2fbfee6f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,6 +69,6 @@ script: - make $MAKEJOBS $GOAL || ( echo "Build failure. Verbose build follows." && make $GOAL V=1 ; false ) - export LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/depends/$HOST/lib - if [ "$RUN_TESTS" = "true" ]; then make check; fi - - if [ "$RUN_TESTS" = "true" ]; then qa/pull-tester/rpc-tests.py; fi + - if [ "$RUN_TESTS" = "true" ]; then qa/pull-tester/rpc-tests.py --coverage; fi after_script: - if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then (echo "Upload goes here. Something like: scp -r $BASE_OUTDIR server" || echo "upload failed"); fi |