Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions cmd/manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,11 @@ var (
}
)

var extraTestPackages []struct {
name string
setupFunc func(*imagetest.TestWorkflow) error
}

// StringSlice is a flag.Value that represents a comma-separated list of strings.
type StringSlice []string

Expand Down Expand Up @@ -458,6 +463,8 @@ func main() {
},
}

testPackages = append(testPackages, extraTestPackages...)

ctx := context.Background()
var computeclient compute.Client
var err error
Expand Down