diff --git a/.travis.yml b/.travis.yml index 4ae44a98..680a5003 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 4717c74b..96861a15 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")