Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 41fd7e8

Browse files
committed
test hack: disable parallel importer tests
1 parent 8406d10 commit 41fd7e8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

cmd/dep/base_importer_test.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ func TestBaseImporter_LookupVersionForLockedProject(t *testing.T) {
142142
t.Run(name, func(t *testing.T) {
143143
h := test.NewHelper(t)
144144
defer h.Cleanup()
145-
h.Parallel()
145+
// Disable parallel tests until we can resolve this error on the Windows builds:
146+
// "remote repository at https://github.com/carolynvs/deptest-importers does not exist, or is inaccessible"
147+
//h.Parallel()
146148

147149
ctx := newTestContext(h)
148150
sm, err := ctx.SourceManager()
@@ -424,7 +426,9 @@ type convertTestCase struct {
424426
func (tc convertTestCase) Exec(t *testing.T, convert func(logger *log.Logger, sm gps.SourceManager) (*dep.Manifest, *dep.Lock, error)) error {
425427
h := test.NewHelper(t)
426428
defer h.Cleanup()
427-
h.Parallel()
429+
// Disable parallel tests until we can resolve this error on the Windows builds:
430+
// "remote repository at https://github.com/carolynvs/deptest-importers does not exist, or is inaccessible"
431+
//h.Parallel()
428432

429433
ctx := newTestContext(h)
430434
sm, err := ctx.SourceManager()

0 commit comments

Comments
 (0)