aboutsummaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-11-02 15:04:55 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-11-02 15:05:03 -0400
commit750415701cb1c9e4cc717be7c810a054dbc2ead0 (patch)
treece2f28a06575318796868629d609f9412564043a /.travis
parentc34c821e4cbddcd85b15d4f71710a833d5841ed7 (diff)
parentfa43626611f4a76cbc361ea89e4989f80d2fa7d7 (diff)
downloadbitcoin-750415701cb1c9e4cc717be7c810a054dbc2ead0.tar.xz
Merge #14630: test_runner: Remove travis specific code
fa43626611 test_runner: Remove travis specific code (MarcoFalke) Pull request description: The tests are no longer run on travis, but in a docker, developer machines or a windows vm. The code was essentially dead for months now. Fix that by explicitly passing in `--ci` to the test runner on our docker and appveyor windows vm. Tree-SHA512: 5d48693c03e8eb27536658ccf9ba738fe93a72abd4b72c80caac084b5b2cdffa77a1031a671eeefe70b71d63500f55917803d4be54d01849722afdccb700a9e6
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/test_06_script.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/test_06_script.sh b/.travis/test_06_script.sh
index 59cc110db5..528d106aaf 100755
--- a/.travis/test_06_script.sh
+++ b/.travis/test_06_script.sh
@@ -62,6 +62,6 @@ fi
if [ "$RUN_FUNCTIONAL_TESTS" = "true" ]; then
BEGIN_FOLD functional-tests
- DOCKER_EXEC test/functional/test_runner.py --combinedlogslen=4000 --coverage --quiet --failfast ${extended}
+ DOCKER_EXEC test/functional/test_runner.py --ci --combinedlogslen=4000 --coverage --quiet --failfast ${extended}
END_FOLD
fi