Skip to content

Commit

Permalink
Testing: Skip Python-based integration tests on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Feb 10, 2024
1 parent 7144edf commit 4a4ae6b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_integration_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 4a4ae6b

Please sign in to comment.