Skip to content

Commit 09ea481

Browse files
committed
💚 CI: Temporary fix for AST constructor depth mismatch in pytest on python 3.11.x
- More information: pytest-dev/pytest#10874
1 parent dba0767 commit 09ea481

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
@@ -412,6 +412,10 @@ async def test_webpage_reload(options):
412412
]
413413

414414

415+
@pytest.mark.skipif(
416+
(platform.system() == "Windows" and platform.python_version_tuple()[:2] >= (3, 11)),
417+
reason="Random Failures!",
418+
)
415419
@pytest.mark.asyncio
416420
@pytest.mark.parametrize("stream_class, result", test_stream_classes)
417421
async def test_webgear_rtc_custom_stream_class(stream_class, result):

0 commit comments

Comments
 (0)