Skip to content

Commit

Permalink
e2e: mark tests as [apigroup:apps.openshift.io] dependent
Browse files Browse the repository at this point in the history
  • Loading branch information
ingvagabund committed Jul 25, 2024
1 parent 9c87f0c commit f975f74
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion test/extended/cli/admin.go
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ var _ = g.Describe("[sig-cli] oc adm", func() {
o.Expect(out).To(o.ContainSubstring("createuser2"))
})

g.It("build-chain [apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io]", func() {
g.It("build-chain [apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:apps.openshift.io]", func() {
// Test building a dependency tree
s2iBuildPath := exutil.FixturePath("..", "..", "examples", "sample-app", "application-template-stibuild.json")
out, _, err := ocns.Run("process").Args("-f", s2iBuildPath, "-l", "build=sti").Outputs()
Expand Down
4 changes: 2 additions & 2 deletions test/extended/cli/builds.go
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ var _ = g.Describe("[sig-cli] oc builds", func() {
o.Expect(err).NotTo(o.HaveOccurred())
})

g.It("webhooks CRUD [apigroup:build.openshift.io]", func() {
g.It("webhooks CRUD [apigroup:build.openshift.io][apigroup:apps.openshift.io]", func() {
g.By("check bc webhooks")
out, err := oc.Run("describe").Args("buildConfigs", "ruby-sample-build").Output()
o.Expect(err).NotTo(o.HaveOccurred())
Expand Down Expand Up @@ -284,7 +284,7 @@ var _ = g.Describe("[sig-cli] oc builds", func() {
))
})

g.It("start-build [apigroup:build.openshift.io]", func() {
g.It("start-build [apigroup:build.openshift.io][apigroup:apps.openshift.io]", func() {
g.By("valid build")
out, err := oc.Run("start-build").Args("--from-webhook", getTriggerURL("secret101", "generic")).Output()
o.Expect(err).NotTo(o.HaveOccurred())
Expand Down
4 changes: 2 additions & 2 deletions test/extended/templates/templateinstance_readiness.go
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ var _ = g.Describe("[sig-devex][Feature:Templates] templateinstance readiness te
}
})

g.It("should report ready soon after all annotated objects are ready [apigroup:template.openshift.io][apigroup:build.openshift.io]", func() {
g.It("should report ready soon after all annotated objects are ready [apigroup:template.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]", func() {
var err error

templateinstance = &templatev1.TemplateInstance{
Expand Down Expand Up @@ -171,7 +171,7 @@ var _ = g.Describe("[sig-devex][Feature:Templates] templateinstance readiness te
o.Expect(err).NotTo(o.HaveOccurred())
})

g.It("should report failed soon after an annotated objects has failed [apigroup:template.openshift.io][apigroup:build.openshift.io]", func() {
g.It("should report failed soon after an annotated objects has failed [apigroup:template.openshift.io][apigroup:build.openshift.io][apigroup:apps.openshift.io]", func() {
var err error

secret, err := cli.KubeClient().CoreV1().Secrets(cli.Namespace()).Create(context.Background(), &v1.Secret{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f975f74

Please sign in to comment.