Skip to content

Commit

Permalink
Skip async tests for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bendabir committed Sep 8, 2024
1 parent c3edc71 commit 9d6949c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/unit/contexts/observation_context_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def test_context_manager_sync(context: FakeContext) -> None:


@pytest.mark.anyio
@pytest.mark.skip(reason="TODO : Support async.")
async def test_context_manager_async(context: FakeContext) -> None:
async with context as _:
pass
Expand All @@ -81,6 +82,7 @@ def run(proxy: FakeProxyAlias) -> None:


@pytest.mark.anyio
@pytest.mark.skip(reason="TODO : Support async.")
async def test_decorator_async(context: FakeContext) -> None:
@context
async def run(proxy: FakeProxyAlias) -> None:
Expand Down

0 comments on commit 9d6949c

Please sign in to comment.