Skip to content

Commit

Permalink
test: don't run in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Jan 5, 2025
1 parent 3cf966c commit 12bee2c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions semantic/compare_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,6 @@ func expectEcosystemCompareResult(
}

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

tests := []struct {
name string
file string
Expand Down Expand Up @@ -240,8 +238,6 @@ func TestVersion_Compare_Ecosystems(t *testing.T) {
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()

runAgainstEcosystemFixture(t, tt.name, tt.file)
})
}
Expand Down
6 changes: 0 additions & 6 deletions semantic/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ func knownEcosystems() []string {
}

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

ecosystems := knownEcosystems()

ecosystems = append(ecosystems, "Alpine", "Debian", "Ubuntu")
Expand All @@ -43,8 +41,6 @@ func TestParse(t *testing.T) {
}

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

defer func() {
if r := recover(); r != nil {
t.Errorf("unexpected panic - '%s'", r)
Expand All @@ -61,8 +57,6 @@ func TestMustParse(t *testing.T) {
}

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

defer func() { _ = recover() }()

semantic.MustParse("", "<unknown>")
Expand Down

0 comments on commit 12bee2c

Please sign in to comment.