make+travis: enable bitcoind itests on travis

This commit is contained in:
Johan T. Halseth 2019-07-11 13:51:22 +02:00
parent a57b3de7f9
commit 857a2c3e65
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

View File

@ -18,6 +18,7 @@ env:
- RACE=true
- ITEST=true
- NEUTRINO_ITEST=true
- BITCOIND_ITEST=true
- COVER=true
sudo: required
@ -35,6 +36,9 @@ script:
# Run neutrino integration tests.
- 'if [ "$NEUTRINO_ITEST" = true ]; then make travis-itest backend=neutrino; fi'
# Run bitcoind integration tests.
- 'if [ "$BITCOIND_ITEST" = true ]; then make travis-itest backend=bitcoind; fi'
# Run unit tests and generate coverage report.
- 'if [ "$COVER" = true ]; then make travis-cover; fi'