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

Commit

Permalink
Merge pull request #712 from carolynvs/fix-glide-appveyor
Browse files Browse the repository at this point in the history
Do not run glide config tests in parallel
  • Loading branch information
sdboyer authored Jun 4, 2017
2 parents 6b75d6b + 1df6698 commit e22c9c8
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions cmd/dep/glide_importer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,6 @@ func newTestContext(h *test.Helper) *dep.Ctx {
}

func TestGlideConfig_Import(t *testing.T) {
t.Parallel()

h := test.NewHelper(t)
defer h.Cleanup()

Expand Down Expand Up @@ -90,7 +88,6 @@ func TestGlideConfig_Import(t *testing.T) {
}

func TestGlideConfig_Import_MissingLockFile(t *testing.T) {
t.Parallel()

h := test.NewHelper(t)
defer h.Cleanup()
Expand Down Expand Up @@ -125,7 +122,6 @@ func TestGlideConfig_Import_MissingLockFile(t *testing.T) {
}

func TestGlideConfig_Convert_Project(t *testing.T) {
t.Parallel()

h := test.NewHelper(t)
defer h.Cleanup()
Expand Down Expand Up @@ -216,8 +212,6 @@ func TestGlideConfig_Convert_Project(t *testing.T) {
}

func TestGlideConfig_Convert_TestProject(t *testing.T) {
t.Parallel()

h := test.NewHelper(t)
defer h.Cleanup()

Expand Down Expand Up @@ -266,8 +260,6 @@ func TestGlideConfig_Convert_TestProject(t *testing.T) {
}

func TestGlideConfig_Convert_Ignore(t *testing.T) {
t.Parallel()

pkg := "github.com/sdboyer/deptest"

logger := log.New(os.Stderr, "", 0)
Expand All @@ -291,8 +283,6 @@ func TestGlideConfig_Convert_Ignore(t *testing.T) {
}

func TestGlideConfig_Convert_ExcludeDir(t *testing.T) {
t.Parallel()

logger := log.New(os.Stderr, "", 0)
g := newGlideImporter(logger, true, nil)
g.yaml = glideYaml{
Expand All @@ -314,8 +304,6 @@ func TestGlideConfig_Convert_ExcludeDir(t *testing.T) {
}

func TestGlideConfig_Convert_ExcludeDir_IgnoresMismatchedPackageName(t *testing.T) {
t.Parallel()

logger := log.New(os.Stderr, "", 0)
g := newGlideImporter(logger, true, nil)
g.yaml = glideYaml{
Expand All @@ -338,8 +326,6 @@ func TestGlideConfig_Convert_ExcludeDir_IgnoresMismatchedPackageName(t *testing.
}

func TestGlideConfig_Convert_WarnsForUnusedFields(t *testing.T) {
t.Parallel()

testCases := map[string]glidePackage{
"specified an os": {OS: "windows"},
"specified an arch": {Arch: "i686"},
Expand Down Expand Up @@ -372,8 +358,6 @@ func TestGlideConfig_Convert_WarnsForUnusedFields(t *testing.T) {
}

func TestGlideConfig_Convert_BadInput_EmptyPackageName(t *testing.T) {
t.Parallel()

logger := log.New(os.Stderr, "", 0)
g := newGlideImporter(logger, true, nil)
g.yaml = glideYaml{
Expand Down

0 comments on commit e22c9c8

Please sign in to comment.