Skip to content

Commit

Permalink
disable test against real databases
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulSnow committed Sep 11, 2023
1 parent ec32569 commit 675452f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tools/cmd/dbrepair/db_repair_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,14 @@ func TestDbRepair(t *testing.T) {
// Do we want to add this? A print against the summaryF instead of the good db?
}

// TestReal
// This test can be used against real databases where those are dropped
// into the source directory for dbrepair as "good" and "bad".
//
// Nice to have, but useless for CI. So un-skip if it is to be used.
func TestReal(t *testing.T) {

t.Skip()
color.NoColor = false
start := time.Now()

Expand Down

0 comments on commit 675452f

Please sign in to comment.