Skip to content

Commit 226c668

Browse files
Move SkipOnDbr check below ForceRun (#3552)
Fixes issue flagged in https://github.com/databricks/cli/pull/3527/files#r2321881715
1 parent 43c1bf6 commit 226c668

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

acceptance/acceptance_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -411,14 +411,14 @@ func getSkipReason(config *internal.TestConfig, configPath string) string {
411411
return "Disabled via SkipLocal setting in " + configPath
412412
}
413413

414-
if isTruePtr(config.SkipOnDbr) && WorkspaceTmpDir {
415-
return "Disabled via SkipOnDbr setting in " + configPath
416-
}
417-
418414
if Forcerun {
419415
return ""
420416
}
421417

418+
if isTruePtr(config.SkipOnDbr) && WorkspaceTmpDir {
419+
return "Disabled via SkipOnDbr setting in " + configPath
420+
}
421+
422422
if isTruePtr(config.Slow) && testing.Short() {
423423
return "Disabled via Slow setting in " + configPath
424424
}

0 commit comments

Comments
 (0)