Skip to content

Commit

Permalink
Remove parallel from tests (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
jradtilbrook authored May 6, 2024
1 parent 7c6283e commit 55d1aec
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions internal/pipeline/resolver/repository_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ func TestResolvePipelinesFromPath(t *testing.T) {
t.Parallel()

t.Run("path has no repo URL", func(t *testing.T) {
t.Parallel()
defer gock.Off()

gock.New("https://api.buildkite.com/v2/organizations/testOrg").
Expand Down Expand Up @@ -45,8 +44,6 @@ func TestResolvePipelinesFromPath(t *testing.T) {
})

t.Run("no pipelines found", func(t *testing.T) {
t.Parallel()

defer gock.Off()

gock.New("https://api.buildkite.com/v2/organizations/testOrg").
Expand Down Expand Up @@ -77,8 +74,6 @@ func TestResolvePipelinesFromPath(t *testing.T) {
})

t.Run("one pipeline", func(t *testing.T) {
t.Parallel()

defer gock.Off()

gock.New("https://api.buildkite.com/v2/organizations/testOrg").
Expand Down Expand Up @@ -108,8 +103,6 @@ func TestResolvePipelinesFromPath(t *testing.T) {
})

t.Run("multiple pipelines", func(t *testing.T) {
t.Parallel()

defer gock.Off()

gock.New("https://api.buildkite.com/v2/organizations/testOrg").
Expand Down

0 comments on commit 55d1aec

Please sign in to comment.