travis: enable neutrino itest

This commit is contained in:
Johan T. Halseth 2019-05-24 14:17:49 +02:00
parent fe9ff3828e
commit 19d6cc00e5
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

View File

@ -17,6 +17,7 @@ env:
matrix:
- RACE=true
- ITEST=true
- NEUTRINO_ITEST=true
- COVER=true
sudo: required
@ -28,9 +29,12 @@ script:
# Run unit tests with race condition detector.
- 'if [ "$RACE" = true ]; then make travis-race ; fi'
# Run integration tests.
# Run btcd integration tests.
- 'if [ "$ITEST" = true ]; then make travis-itest; fi'
# Run neutrino integration tests.
- 'if [ "$NEUTRINO_ITEST" = true ]; then make travis-itest backend=neutrino; fi'
# Run unit tests and generate coverage report.
- 'if [ "$COVER" = true ]; then make travis-cover; fi'