File tree Expand file tree Collapse file tree 3 files changed +394
-87
lines changed
openshift/tests-extension Expand file tree Collapse file tree 3 files changed +394
-87
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ https://github.com/openshift-eng/openshift-tests-extension/blob/main/cmd/example
99package main
1010
1111import (
12+ "context"
1213 "fmt"
1314 "os"
1415 "strings"
@@ -20,6 +21,7 @@ import (
2021 "github.com/spf13/cobra"
2122
2223 "github.com/openshift/operator-framework-operator-controller/openshift/tests-extension/pkg/env"
24+ "github.com/openshift/operator-framework-operator-controller/openshift/tests-extension/pkg/fixtures"
2325 _ "github.com/openshift/operator-framework-operator-controller/openshift/tests-extension/test"
2426 _ "github.com/openshift/operator-framework-operator-controller/openshift/tests-extension/test/qe/specs"
2527 exutil "github.com/openshift/operator-framework-operator-controller/openshift/tests-extension/test/qe/util"
@@ -239,6 +241,10 @@ func main() {
239241 specs .AddBeforeAll (func () {
240242 env .Init ()
241243 exutil .InitClusterEnv ()
244+ fixtures .BuildFixtures (context .Background ())
245+ })
246+ specs .AddAfterAll (func () {
247+ fixtures .TearDownFixtures (context .Background ())
242248 })
243249
244250 ext .AddSpecs (specs )
You can’t perform that action at this time.
0 commit comments