test using proper Gopath

This commit is contained in:
Alex Ellis 2017-09-25 21:08:37 +01:00 committed by GitHub
parent 9745faa243
commit 0ce5a08690

View File

@ -4,12 +4,21 @@ docker swarm init --advertise-addr=$(hostname -i)
./deploy_stack.sh
#cd gateway/tests/integration
#go test -v
#cd ../../../
cd ..
echo $GOPATH
mkdir -p $GOPATH/go/src/github.com/openfaas/
cp -r faas $GOPATH/go/src/github.com/openfaas/
git clone https://github.com/openfaas/certify-incubator
cd certify-incubator && \
cp -r certify-incubator $GOPATH/go/src/github.com/openfaas/
cd $GOPATH/go/src/github.com/openfaas/faas/ && \
go test -v
cd $GOPATH/go/src/github.com/openfaas/certify-incubator && \
make test
exit 0