Skip to content

Commit f61d2ae

Browse files
Merge pull request #5995 from flouthoc/parallel-conformance
conformance: make `TestCommit` and `TestConformance` parallel
2 parents 9743a49 + fca3ca4 commit f61d2ae

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/conformance/conformance_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ func TestMain(m *testing.M) {
160160
}
161161

162162
func TestConformance(t *testing.T) {
163+
t.Parallel()
163164
dateStamp := fmt.Sprintf("%d", time.Now().UnixNano())
164165
for i := range internalTestCases {
165166
t.Run(internalTestCases[i].name, func(t *testing.T) {
@@ -3477,6 +3478,7 @@ var internalTestCases = []testCase{
34773478
}
34783479

34793480
func TestCommit(t *testing.T) {
3481+
t.Parallel()
34803482
testCases := []struct {
34813483
description string
34823484
baseImage string

0 commit comments

Comments
 (0)