diff --git a/tests/test_integration_python.py b/tests/test_integration_python.py index e23d959..b4d6c7c 100644 --- a/tests/test_integration_python.py +++ b/tests/test_integration_python.py @@ -5,6 +5,10 @@ from tests.integration_util import node, setup, teardown, translate +if sys.platform.startswith("linux"): + raise unittest.skip(reason="Not supported on Linux") + + def setUpModule(): node.start() assert node.http_host, "http_url must be available"