Skip to content

Commit

Permalink
kola/tests: add openshift required tag to OCP tests
Browse files Browse the repository at this point in the history
This is part of openshift/os#1445.
  • Loading branch information
jlebon committed Feb 21, 2024
1 parent f0828c3 commit 04edbe6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mantle/kola/tests/crio/crio.go
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,8 @@ func init() {
Distros: []string{"rhcos"},
UserData: enableCrioIgn,
// crio pods require fetching a kubernetes pause image
Tags: []string{"crio", kola.NeedsInternetTag},
Tags: []string{kola.NeedsInternetTag},
RequiredTag: "openshift",
})
register.RegisterTest(&register.Test{
Run: crioNetwork,
Expand All @@ -207,7 +208,8 @@ func init() {
Distros: []string{"rhcos"},
UserData: enableCrioIgn,
// this test requires net connections outside the host
Tags: []string{"crio", kola.NeedsInternetTag},
Tags: []string{kola.NeedsInternetTag},
RequiredTag: "openshift",
// qemu machines cannot communicate between each other
ExcludePlatforms: []string{"qemu"},
})
Expand Down
1 change: 1 addition & 0 deletions mantle/kola/tests/misc/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ func init() {
Timeout: 40 * time.Minute,
Distros: []string{"rhcos"},
Platforms: []string{"qemu"},
RequiredTag: "openshift",
})
}

Expand Down

0 comments on commit 04edbe6

Please sign in to comment.