Skip to content

Commit adb0e76

Browse files
committed
Don't run mysql test by default
1 parent e3792d5 commit adb0e76

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/backend/mysql/mysql_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ const testPassword = "SqlPassw0rd"
1919
// the future consider nested transactions, or manually TRUNCATE-ing the tables in-between tests.
2020

2121
func Test_MysqlBackend(t *testing.T) {
22-
// if testing.Short() {
23-
// t.Skip()
24-
// }
22+
if testing.Short() {
23+
t.Skip()
24+
}
2525

2626
dbName := "test_" + strings.Replace(uuid.NewString(), "-", "", -1)
2727

0 commit comments

Comments
 (0)