Allow tests to only run locally (#4664)

* Allow tests to only run locally

Allow tests that are flaky or currently unsupported on the server to run locally

* Address feedback
This commit is contained in:
Anna Song
2022-06-08 10:04:23 -07:00
committed by GitHub
parent 4b19643b36
commit 3fdf88d10e
5 changed files with 83 additions and 96 deletions

View File

@@ -1,6 +1,8 @@
// Code generated by pluginator on AnnotationsTransformer; DO NOT EDIT.
// pluginator {unknown 1970-01-01T00:00:00Z }
package builtins
import (
@@ -16,6 +18,7 @@ type AnnotationsTransformerPlugin struct {
FieldSpecs []types.FieldSpec `json:"fieldSpecs,omitempty" yaml:"fieldSpecs,omitempty"`
}
func (p *AnnotationsTransformerPlugin) Config(
_ *resmap.PluginHelpers, c []byte) (err error) {
p.Annotations = nil
@@ -34,5 +37,5 @@ func (p *AnnotationsTransformerPlugin) Transform(m resmap.ResMap) error {
}
func NewAnnotationsTransformerPlugin() resmap.TransformerPlugin {
return &AnnotationsTransformerPlugin{}
return &AnnotationsTransformerPlugin{}
}