summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorJon Marius Venstad <venstad@gmail.com>2022-02-15 09:44:39 +0100
committerJon Marius Venstad <venstad@gmail.com>2022-02-15 09:44:39 +0100
commita4b17db7091dacbe0c68616e726ecb5dfa215bfe (patch)
tree1be85ea4e2201f1eb0ad800dc83ce34e379b43ed /client
parent0e903f7068c9bed3d76f4b6bf002387d9ebab9e6 (diff)
Don't verify zipped tests for now
Diffstat (limited to 'client')
-rw-r--r--client/go/cmd/prod.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/client/go/cmd/prod.go b/client/go/cmd/prod.go
index 8480b7a6e2b..4930135d662 100644
--- a/client/go/cmd/prod.go
+++ b/client/go/cmd/prod.go
@@ -146,7 +146,10 @@ $ vespa prod submit`,
"See https://cloud.vespa.ai/en/getting-to-production")
return
}
- verifyTests(pkg.TestPath, target)
+ // TODO: Always verify tests. Do it before packaging, when running Maven from this CLI.
+ if ! pkg.IsZip() {
+ verifyTests(pkg.TestPath, target)
+ }
isCI := os.Getenv("CI") != ""
if !isCI {
fmt.Fprintln(stderr, color.Yellow("Warning:"), "We recommend doing this only from a CD job")