aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2016-09-01 20:01:16 +0200
committerRiccardo Spagni <ric@spagni.net>2016-09-01 20:01:16 +0200
commit59b7f51766d2a50de3efefc343a7b95deb0ffc34 (patch)
tree77a91c541aee148b3aa780f58dcda1a44ce6fc18 /.travis.yml
parentMerge pull request #1029 (diff)
parentcmake: exclude tests from running (diff)
downloadmonero-59b7f51766d2a50de3efefc343a7b95deb0ffc34.tar.xz
Merge pull request #1010
3398515 cmake: exclude tests from running (redfish) e374ae7 cmake: option+target for profiling for coverage (redfish)
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 36c48f8d6..3eb75bea7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -36,8 +36,11 @@ matrix:
- pip install --user cpp-coveralls
install:
- sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0}
+ env:
+ # exclude long-running and failing tests (#895)
+ - ARGS=" -E 'coretests|libwallet_api_tests' "
script:
- - make -j2 debug-test
+ - make -j2 coverage
after_success:
- travis_wait coveralls -e external -e tests -e cmake -e contrib -e translations -e utils --gcov-options '\-lp' &> /dev/null