From 164db26a1142ea42e4adbb343ffbc03d541d0ed1 Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 30 Aug 2016 11:14:34 -0700 Subject: [PATCH] build: install lnd binary within Travis container for integration tests --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 5e555533..70f89864 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ install: - go get -v github.com/roasbeef/btcd # Required for the rpc test package. - go get -v github.com/Masterminds/glide - glide install + - go install -v . # Required for the integration tests. script: - export PATH=$PATH:$HOME/gopath/bin - go test -v $(go list ./... | grep -v '/vendor/')