Skip to content

Commit f0111ab

Browse files
committed
Skip use_location tests on macos
1 parent 873096c commit f0111ab

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/py/reactpy/tests/test_backend/test_all.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import sys
12
from collections.abc import MutableMapping
23

34
import pytest
@@ -106,6 +107,7 @@ def ShowScope():
106107
assert isinstance(scope.current, MutableMapping)
107108

108109

110+
@pytest.mark.skipIf(sys.platform == "darwin", reason="Tornado and Flask backends are currently buggy on MacOS.")
109111
async def test_use_location(display: DisplayFixture):
110112
location = reactpy.Ref()
111113

0 commit comments

Comments
 (0)