Skip to content

Commit

Permalink
Adding skip to flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
Fiona-Waters committed Dec 7, 2023
1 parent 41833f2 commit 5c3d3ed
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/e2e/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ var _ = Describe("AppWrapper E2E Test", func() {
})

It("MCAD CPU Preemption Test", func() {

Skip("Skipping MCAD CPU Preemption Test - [Bug] Failing intermittently on opened PRs")

fmt.Fprintf(os.Stdout, "[e2e] MCAD CPU Preemption Test - Started.\n")

context := initTestContext()
Expand Down Expand Up @@ -126,6 +129,9 @@ var _ = Describe("AppWrapper E2E Test", func() {
})

It("MCAD CPU Requeuing - Completion After Enough Requeuing Times Test", func() {

Skip("Skipping MCAD CPU Requeuing - Completion After Enough Requeuing Times Test - [Bug] Failing intermittently on opened PRs")

fmt.Fprintf(os.Stdout, "[e2e] Completion After Enough Requeuing Times Test - Started.\n")

context := initTestContext()
Expand All @@ -146,6 +152,9 @@ var _ = Describe("AppWrapper E2E Test", func() {
})

It("MCAD CPU Requeuing - Deletion After Maximum Requeuing Times Test", func() {

Skip("Skipping MCAD CPU Requeuing - Deletion After Maximum Requeuing Times Test - [Bug] Failing intermittently on opened PRs")

fmt.Fprintf(os.Stdout, "[e2e] MCAD CPU Requeuing - Deletion After Maximum Requeuing Times Test - Started.\n")

context := initTestContext()
Expand Down

0 comments on commit 5c3d3ed

Please sign in to comment.