We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ca8edb commit 9719c75Copy full SHA for 9719c75
1 file changed
internal/testrunner/runners/pipeline/runner.go
@@ -79,7 +79,7 @@ func (r *runner) Run(options testrunner.TestOptions) ([]testrunner.TestResult, e
79
r.runCompareResults = true
80
81
v, ok := os.LookupEnv(serverlessDisableCompareResults)
82
- if ok && strings.ToLower(v) != "false" {
+ if ok && strings.ToLower(v) == "true" {
83
r.runCompareResults = false
84
}
85
0 commit comments