From 439b0b48be753c1a3d999f1d3b69e015736328e8 Mon Sep 17 00:00:00 2001 From: Andrew Farries Date: Mon, 6 Jan 2025 07:34:55 +0000 Subject: [PATCH] Add `t.Parallel()` to existing tests --- pkg/migrations/migrations_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/migrations/migrations_test.go b/pkg/migrations/migrations_test.go index a1461352..0d4d3243 100644 --- a/pkg/migrations/migrations_test.go +++ b/pkg/migrations/migrations_test.go @@ -11,6 +11,8 @@ import ( ) func TestMigrationsIsolated(t *testing.T) { + t.Parallel() + migration := Migration{ Name: "sql", Operations: Operations{ @@ -27,6 +29,8 @@ func TestMigrationsIsolated(t *testing.T) { } func TestMigrationsIsolatedValid(t *testing.T) { + t.Parallel() + migration := Migration{ Name: "sql", Operations: Operations{ @@ -40,6 +44,8 @@ func TestMigrationsIsolatedValid(t *testing.T) { } func TestOnCompleteSQLMigrationsAreNotIsolated(t *testing.T) { + t.Parallel() + migration := Migration{ Name: "sql", Operations: Operations{