We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ab55f5 commit e7e1dc5Copy full SHA for e7e1dc5
tests/test_container.py
@@ -12,6 +12,10 @@
12
13
14
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
+)
19
20
21
class DockerContainer:
0 commit comments