From 0d3b2ebd4aa5d6ebb8f5e9ea4e6b65cf637e383e Mon Sep 17 00:00:00 2001 From: Ross Light Date: Fri, 25 Oct 2019 15:00:03 -0700 Subject: [PATCH] internal/wire: mark tests as parallelizable (#218) --- .travis.yml | 4 ---- internal/wire/wire_test.go | 4 +--- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4ae44a9..680a500 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,10 +45,6 @@ env: jobs: include: - - go: "1.11.x" - os: linux - - go: "1.12.x" - os: linux - go: "1.13.x" os: linux - go: "1.13.x" diff --git a/internal/wire/wire_test.go b/internal/wire/wire_test.go index 4717c74..96861a1 100644 --- a/internal/wire/wire_test.go +++ b/internal/wire/wire_test.go @@ -72,9 +72,7 @@ func TestWire(t *testing.T) { for _, test := range tests { test := test t.Run(test.name, func(t *testing.T) { - // TODO(light): These tests should be parallelizable, but this causes - // intermittent failures. See https://github.com/google/wire/issues/66 - // for details. + t.Parallel() // Materialize a temporary GOPATH directory. gopath, err := ioutil.TempDir("", "wire_test")