Skip to content

Commit

Permalink
Merge branch 'develop' into WX-1792-rename-keys
Browse files Browse the repository at this point in the history
  • Loading branch information
THWiseman committed Sep 6, 2024
2 parents 2ec738e + 61eca43 commit b5f3e29
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ case class CentaurTestCase(workflow: Workflow,
// Test will run on servers that support all of the test's backends (or more) (default)
testBackends forall supportedBackends.contains
case AnyBackendRequired(testBackends) =>
// Test will run on servers that support at least one of the test's backends (or more)
testBackends exists supportedBackends.contains
// Test will run on servers that support at least one of the test's backends (or more),
// or if no test backends are specified at all.
testBackends.isEmpty || (testBackends exists supportedBackends.contains)
case OnlyBackendsAllowed(testBackends) =>
// Test will run on servers that only support backends the test specifies (or fewer)
supportedBackends forall testBackends.contains
Expand Down

0 comments on commit b5f3e29

Please sign in to comment.