enable GO111MODULE also on go test

This commit is contained in:
Felix Kunde 2019-10-30 16:08:29 +01:00
parent aab4d51142
commit 13b2cb944a
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ deps:
test:
hack/verify-codegen.sh
@go test ./pkg/...
GO111MODULE=on go test ./...
e2e: docker # build operator image to be tested
cd e2e; make tools test clean

View File

@ -32,7 +32,7 @@ pipeline:
- desc: 'Run unit tests'
cmd: |
export PATH=$PATH:$HOME/go/bin
go test ./pkg/...
make test
- desc: 'Run e2e tests'
cmd: |
make e2e