From 90bb8f7b5f916e144d571c7bc471fe3d93262eff Mon Sep 17 00:00:00 2001 From: TwiN Date: Thu, 19 Jan 2023 01:53:52 -0500 Subject: [PATCH] test: Don't run tests in parallel --- core/condition_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/condition_test.go b/core/condition_test.go index a321c138..678eed9e 100644 --- a/core/condition_test.go +++ b/core/condition_test.go @@ -622,7 +622,6 @@ func TestCondition_evaluate(t *testing.T) { } for _, scenario := range scenarios { t.Run(scenario.Name, func(t *testing.T) { - t.Parallel() scenario.Condition.evaluate(scenario.Result, scenario.DontResolveFailedConditions) if scenario.Result.ConditionResults[0].Success != scenario.ExpectedSuccess { t.Errorf("Condition '%s' should have been success=%v", scenario.Condition, scenario.ExpectedSuccess)