Skip to content

Commit

Permalink
fix: Remove parallel execution for regression tests (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
obalunenko committed Dec 1, 2022
1 parent 79a832c commit 57b53ca
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tests/regression_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ const (

// Regression tests for all puzzles. Check that answers still correct.
func TestRun(t *testing.T) {
t.Parallel()

if !getenv.BoolOrDefault(regressionEnabled, false) {
t.Skipf("%s disabled", regressionEnabled)
}
Expand Down Expand Up @@ -61,8 +59,6 @@ func TestRun(t *testing.T) {
tt := tests[i]

t.Run(tt.name, func(t *testing.T) {
t.Parallel()

got, err := command.Run(ctx, tt.args.year, tt.args.name)
if tt.wantErr {
require.Error(t, err)
Expand Down

0 comments on commit 57b53ca

Please sign in to comment.