Skip to content

Commit 182ca41

Browse files
committed
💚 CI: Extended fix to more tests.
- Temporary fix for AST constructor depth mismatch in pytest on python 3.11.x, More information: pytest-dev/pytest#10874
1 parent 1ad2e3d commit 182ca41

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

vidgear/tests/streamer_tests/asyncio_tests/test_webgear_rtc.py

+4
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,10 @@ async def test_webgear_rtc_custom_stream_class(stream_class, result):
466466
]
467467

468468

469+
@pytest.mark.skipif(
470+
platform.python_version_tuple()[:2] >= ("3", "11"),
471+
reason="Random Failures!",
472+
)
469473
@pytest.mark.asyncio
470474
@pytest.mark.parametrize("middleware, result", test_data_class)
471475
async def test_webgear_rtc_custom_middleware(middleware, result):

0 commit comments

Comments
 (0)