This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 489be5915c9598173c7b0c16f1185b587e4adf65 Author: Antonin Stefanutti <[email protected]> AuthorDate: Mon Mar 15 15:38:12 2021 +0100 test: Add e2e/common/cli to common e2e test suite --- script/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/script/Makefile b/script/Makefile index a13bdd2..aee8872 100644 --- a/script/Makefile +++ b/script/Makefile @@ -147,8 +147,11 @@ test: build go test ./... test-integration: build - STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e/common -tags=integration && go test -timeout 60m -v ./e2e/common/languages -tags=integration && go test -timeout 60m -v ./e2e/common/traits -tags=integration - #go test -timeout 60m -v ./e2e/common -tags=integration + STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" \ + go test -timeout 60m -v ./e2e/common -tags=integration && \ + go test -timeout 60m -v ./e2e/common/cli -tags=integration && \ + go test -timeout 60m -v ./e2e/common/languages -tags=integration && \ + go test -timeout 60m -v ./e2e/common/traits -tags=integration test-knative: build STAGING_RUNTIME_REPO="$(STAGING_RUNTIME_REPO)" go test -timeout 60m -v ./e2e/knative -tags=integration
