Skip to content

Commit

Permalink
💚 CI: Temporary fix for AST constructor depth mismatch in pytest on p…
Browse files Browse the repository at this point in the history
…ython 3.11.x

- More information: pytest-dev/pytest#10874
  • Loading branch information
abhiTronix committed Jul 26, 2023
1 parent dba0767 commit 09ea481
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,10 @@ async def test_webpage_reload(options):
]


@pytest.mark.skipif(
(platform.system() == "Windows" and platform.python_version_tuple()[:2] >= (3, 11)),
reason="Random Failures!",
)
@pytest.mark.asyncio
@pytest.mark.parametrize("stream_class, result", test_stream_classes)
async def test_webgear_rtc_custom_stream_class(stream_class, result):
Expand Down

0 comments on commit 09ea481

Please sign in to comment.