diff --git a/internal/pkg/githubapi/github_test.go b/internal/pkg/githubapi/github_test.go index c49f24d6..48e24e9f 100644 --- a/internal/pkg/githubapi/github_test.go +++ b/internal/pkg/githubapi/github_test.go @@ -437,6 +437,7 @@ func TestCommitStatusTargetURL(t *testing.T) { } func Test_getPromotionSkipPaths(t *testing.T) { + t.Parallel() type args struct { promotion PromotionInstance } @@ -492,6 +493,7 @@ func Test_getPromotionSkipPaths(t *testing.T) { } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { + t.Parallel() got := getPromotionSkipPaths(tt.args.promotion) assert.Equal(t, tt.want, got) })