MERGE FIX: fixup travis bitcoin_functional run

This commit is contained in:
Gregory Sanders 2019-01-28 18:33:01 +00:00
parent 90f7d18c8f
commit 01799727c2
2 changed files with 8 additions and 2 deletions

View file

@ -6,5 +6,5 @@
export LC_ALL=C
travis_retry pip install codespell
travis_retry pip install flake8
travis_retry pip install codespell==1.13.0
travis_retry pip install flake8==3.5.0

View file

@ -65,3 +65,9 @@ if [ "$RUN_FUNCTIONAL_TESTS" = "true" ]; then
DOCKER_EXEC test/functional/test_runner.py --combinedlogslen=4000 --coverage --quiet --failfast ${extended}
END_FOLD
fi
if [ "$RUN_BITCOIN_TESTS" = "true" ]; then
BEGIN_FOLD bitcoin-functional-tests
DOCKER_EXEC test/bitcoin_functional/functional/test_runner.py --combinedlogslen=4000 --coverage --quiet --failfast ${extended}
END_FOLD
fi