Skip to content

Commit

Permalink
💚 CI: Extended fix to more tests.
Browse files Browse the repository at this point in the history
- Temporary fix for AST constructor depth mismatch in pytest on python 3.11.x, More information: pytest-dev/pytest#10874
  • Loading branch information
abhiTronix committed Jul 26, 2023
1 parent 1ad2e3d commit 182ca41
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,10 @@ async def test_webgear_rtc_custom_stream_class(stream_class, result):
]


@pytest.mark.skipif(
platform.python_version_tuple()[:2] >= ("3", "11"),
reason="Random Failures!",
)
@pytest.mark.asyncio
@pytest.mark.parametrize("middleware, result", test_data_class)
async def test_webgear_rtc_custom_middleware(middleware, result):
Expand Down

0 comments on commit 182ca41

Please sign in to comment.