Skip to content

Commit

Permalink
Focus only on failing tests for faster feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
monotypical committed Dec 2, 2024
1 parent 8280180 commit 3fa1640
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/blackbox/rdsbroker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ var _ = Describe("RDS Broker Daemon", func() {
})
})

Describe("Restore from snapshot", func() {
FDescribe("Restore from snapshot", func() {
TestRestoreFromSnapshot := func(serviceID, planID string, testExtensions bool) {
var (
instanceID string
Expand Down Expand Up @@ -909,12 +909,12 @@ var _ = Describe("RDS Broker Daemon", func() {
TestRestoreFromSnapshot("postgres", "postgres-micro-13", true)
})

Describe("MySQL 8.0", func() {
FDescribe("MySQL 8.0", func() {
TestRestoreFromSnapshot("mysql", "mysql-8.0-micro", false)
})
})

Describe("Restore from before a point in time", func() {
FDescribe("Restore from before a point in time", func() {
TestRestoreFromPointInTime := func(serviceID, planID string, testExtensions bool) {
var (
instanceID string
Expand Down Expand Up @@ -1078,7 +1078,7 @@ var _ = Describe("RDS Broker Daemon", func() {
TestRestoreFromPointInTime("postgres", "postgres-micro-13", true)
})

Describe("MySQL 8.0", func() {
FDescribe("MySQL 8.0", func() {
TestRestoreFromPointInTime("mysql", "mysql-8.0-micro", false)
})
})
Expand Down

0 comments on commit 3fa1640

Please sign in to comment.