Skip to content

Commit 6677a61

Browse files
codablockUdjinM6
authored andcommitted
Run extended tests when Travis is started through cron (#2983)
This allows daily testing of extended tests. The --exclude also contains "dbcrash", which we haven't backported yet, but I decided to leave it in when I copied the code from Bitcoin, so that we later don't forget to add it.
1 parent d63202b commit 6677a61

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ runtests: &runtests
5656
- $DOCKER_RUN_IN_BUILDER ./ci/build_depends.sh
5757
- $DOCKER_RUN_IN_BUILDER ./ci/build_src.sh
5858
- $DOCKER_RUN_IN_BUILDER ./ci/test_unittests.sh
59-
- $DOCKER_RUN_IN_BUILDER ./ci/test_integrationtests.sh --jobs=3
59+
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then extended="--extended --exclude pruning,dbcrash"; fi
60+
- $DOCKER_RUN_IN_BUILDER ./ci/test_integrationtests.sh --jobs=3 ${extended}
6061

6162
builddocker: &builddocker
6263
stage: build docker

0 commit comments

Comments
 (0)