Skip to content

Commit 57b53ca

Browse files
authored
fix: Remove parallel execution for regression tests (#210)
1 parent 79a832c commit 57b53ca

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/regression_test.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ const (
3232

3333
// Regression tests for all puzzles. Check that answers still correct.
3434
func TestRun(t *testing.T) {
35-
t.Parallel()
36-
3735
if !getenv.BoolOrDefault(regressionEnabled, false) {
3836
t.Skipf("%s disabled", regressionEnabled)
3937
}
@@ -61,8 +59,6 @@ func TestRun(t *testing.T) {
6159
tt := tests[i]
6260

6361
t.Run(tt.name, func(t *testing.T) {
64-
t.Parallel()
65-
6662
got, err := command.Run(ctx, tt.args.year, tt.args.name)
6763
if tt.wantErr {
6864
require.Error(t, err)

0 commit comments

Comments
 (0)