enable GO111MODULE also on go test (#701)

* enable GO111MODULE also on go test
This commit is contained in:
Felix Kunde 2019-10-30 16:51:54 +01:00 committed by GitHub
parent 0a7b09e791
commit 719505afba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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/...
go test ./...
- desc: 'Run e2e tests'
cmd: |
make e2e