From 89b83154e58d7982d7db510a70f273971206c27a Mon Sep 17 00:00:00 2001 From: Brian de Alwis Date: Fri, 9 Apr 2021 00:53:01 -0400 Subject: [PATCH] Mark structureTests as filepaths (#5657) --- pkg/skaffold/schema/latest/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/skaffold/schema/latest/config.go b/pkg/skaffold/schema/latest/config.go index 144316af80d..558b87a9f27 100644 --- a/pkg/skaffold/schema/latest/config.go +++ b/pkg/skaffold/schema/latest/config.go @@ -486,7 +486,7 @@ type TestCase struct { // StructureTests lists the [Container Structure Tests](https://github.com/GoogleContainerTools/container-structure-test) // to run on that artifact. // For example: `["./test/*"]`. - StructureTests []string `yaml:"structureTests,omitempty"` + StructureTests []string `yaml:"structureTests,omitempty" skaffold:"filepath"` } // DeployConfig contains all the configuration needed by the deploy steps.