Skip to content

Commit e7e1dc5

Browse files
committed
Skip containers test in CI
Until we can get #174 merged.
1 parent 8ab55f5 commit e7e1dc5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_container.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212

1313

1414
pytestmark = pytest.mark.skipif(os.getenv("SKIP_CONTAINER") is not None, reason="SKIP_CONTAINER set")
15+
pytestmark = pytest.mark.skipif(
16+
platform.system() == "Darwin" and os.getenv("GITHUB_ACTIONS") is not None,
17+
reason="Github actions doesn't support docker",
18+
)
1519

1620

1721
class DockerContainer:

0 commit comments

Comments
 (0)