Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 0d3b2eb

Browse files
zombiezenshantuo
authored andcommitted
internal/wire: mark tests as parallelizable (#218)
1 parent f240b7a commit 0d3b2eb

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,6 @@ env:
4545

4646
jobs:
4747
include:
48-
- go: "1.11.x"
49-
os: linux
50-
- go: "1.12.x"
51-
os: linux
5248
- go: "1.13.x"
5349
os: linux
5450
- go: "1.13.x"

internal/wire/wire_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,7 @@ func TestWire(t *testing.T) {
7272
for _, test := range tests {
7373
test := test
7474
t.Run(test.name, func(t *testing.T) {
75-
// TODO(light): These tests should be parallelizable, but this causes
76-
// intermittent failures. See https://github.com/google/wire/issues/66
77-
// for details.
75+
t.Parallel()
7876

7977
// Materialize a temporary GOPATH directory.
8078
gopath, err := ioutil.TempDir("", "wire_test")

0 commit comments

Comments
 (0)