aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2017-03-24 14:01:41 +0100
committerMarcoFalke <[email protected]>2017-03-24 14:02:58 +0100
commita0b1e57b20a17177ed5a9a54e4a8aab597a546b4 (patch)
treec52028188a2e2b21424d45bb71d9c5130bad1e98
parentMerge #10053: [test] Allow functional test cases to be skipped (diff)
parentRun extended tests once daily (diff)
downloaddiscoin-a0b1e57b20a17177ed5a9a54e4a8aab597a546b4.tar.xz
discoin-a0b1e57b20a17177ed5a9a54e4a8aab597a546b4.zip
Merge #10052: [test] Run extended tests once daily in Travis
88e3aa0 Run extended tests once daily (John Newbery) Tree-SHA512: 92478ee930b60d8d90d1bf7352ff81853198391559281ce3074748b55145202984ba4150f751d25f3256e696e3fd8f25ea02ecd57b881744736adf505c275178
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index f57a19c4c..503172f2a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -70,7 +70,8 @@ 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 $MAKEJOBS check VERBOSE=1; fi
- - if [ "$RUN_TESTS" = "true" ]; then test/functional/test_runner.py --coverage; fi
+ - if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then extended="--extended --exclude pruning"; fi
+ - if [ "$RUN_TESTS" = "true" ]; then test/functional/test_runner.py --coverage ${extended}; fi
after_script:
- echo $TRAVIS_COMMIT_RANGE
- echo $TRAVIS_COMMIT_LOG