Skip to content

Commit

Permalink
Merge pull request #6300 from MetRonnie/func-tests
Browse files Browse the repository at this point in the history
Functional tests: fix unbound env var failure
  • Loading branch information
wxtim authored Aug 14, 2024
2 parents 00ba50d + 80cb584 commit 524b44e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/functional/lib/bash/test_header
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ skip_all() {

skip_macos_gh_actions() {
# https://github.com/cylc/cylc-flow/issues/6276
if [[ "$CI" && "$OSTYPE" == "darwin"* ]]; then
if [[ "${CI:-}" && "$OSTYPE" == "darwin"* ]]; then
skip_all "Skipped due to performance issues on GH Actions MacOS runner"
fi
}
Expand Down

0 comments on commit 524b44e

Please sign in to comment.