Skip to content

Commit

Permalink
Skip containers test in CI
Browse files Browse the repository at this point in the history
Until we can get #174
merged.
  • Loading branch information
Kyle-Verhoog committed Feb 17, 2024
1 parent 8ab55f5 commit 2f7d9b3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,10 @@ def build_image():


@pytest.mark.skipif(platform.system() == "Linux", reason="No socket mounting issues on Linux")
@pytest.mark.skipif(
platform.system() == "Darwin" and os.getenv("GITHUB_ACTIONS") is not None,
reason="Github actions doesn't support docker",
)
def test_container_uds(build_image, tmp_path_factory):
uds_dir = tmp_path_factory.mktemp("uds")

Expand Down

0 comments on commit 2f7d9b3

Please sign in to comment.