Skip to content

Commit

Permalink
Issue #222: Another fix for Darwin unit tests, so that the reason mes…
Browse files Browse the repository at this point in the history
…sage doesn't break.
  • Loading branch information
MattClarkson committed Feb 12, 2024
1 parent 58b09a1 commit 8635bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/camera/test_liver_overlay.py
Expand Up @@ -16,7 +16,7 @@
reason=f'for [{platform.system()} OSs with '
f'CI=[{os.environ.get("CI")}] with '
f'RUNNER_OS=[{os.environ.get("RUNNER_OS")}] '
f'SESSION_MANAGER=[{os.environ.get("SESSION_MANAGER")[0:20] if (platform.system() == "Darwin" and os.environ.get("GITHUB_ACTIONS") is not None) else ""}] '
f'SESSION_MANAGER=[{os.environ.get("SESSION_MANAGER")[0:20] if (platform.system() == "Darwin" and os.environ.get("GITHUB_ACTIONS") is not None and os.environ.get("SESSION_MANAGER") is not None) else ""}] '
f'XDG_CURRENT_DESKTOP=[{os.environ.get("XDG_CURRENT_DESKTOP") if (platform.system() == "Darwin" and os.environ.get("GITHUB_ACTIONS") is not None) else ""}] '
f'due to issues with Fatal Python error: Segmentation fault'
)
Expand Down

0 comments on commit 8635bbf

Please sign in to comment.