From f0111aba7f6b0680b52d8df7680be55dceb01682 Mon Sep 17 00:00:00 2001 From: Archmonger <16909269+Archmonger@users.noreply.github.com> Date: Mon, 28 Oct 2024 20:06:04 -0700 Subject: [PATCH] Skip use_location tests on macos --- src/py/reactpy/tests/test_backend/test_all.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/py/reactpy/tests/test_backend/test_all.py b/src/py/reactpy/tests/test_backend/test_all.py index dc8ec1284..a86ee108c 100644 --- a/src/py/reactpy/tests/test_backend/test_all.py +++ b/src/py/reactpy/tests/test_backend/test_all.py @@ -1,3 +1,4 @@ +import sys from collections.abc import MutableMapping import pytest @@ -106,6 +107,7 @@ def ShowScope(): assert isinstance(scope.current, MutableMapping) +@pytest.mark.skipIf(sys.platform == "darwin", reason="Tornado and Flask backends are currently buggy on MacOS.") async def test_use_location(display: DisplayFixture): location = reactpy.Ref()