Skip to content

Commit

Permalink
sql: only skip import worker failure under race,stress,deadlock
Browse files Browse the repository at this point in the history
Better to have the test running some of the time to catch regressions.

Informs: 102839
Epic: None
Release note: None
  • Loading branch information
cucaroach committed Jun 28, 2023
1 parent dca6ef2 commit 1f66e36
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/sql/importer/import_stmt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5422,7 +5422,9 @@ func TestImportWorkerFailure(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)

skip.WithIssue(t, 102839, "flaky test")
skip.UnderStressWithIssue(t, 102839, "flaky test")
skip.UnderDeadlockWithIssue(t, 102839, "flaky test")
skip.UnderRaceWithIssue(t, 102839, "flaky test")

allowResponse := make(chan struct{})
params := base.TestClusterArgs{}
Expand Down

0 comments on commit 1f66e36

Please sign in to comment.