Skip to content

Commit 7d9b583

Browse files
authored
[EventHub] skip if 3.8 (Azure#40449)
1 parent 6baefbc commit 7d9b583

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/eventhub/azure-eventhub/tests/pyamqp_tests/unittest/asynctests/test_websocket_exception_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# class WebsocketException(unittest.TestCase):
99
@pytest.mark.asyncio
1010
@pytest.mark.skipif(
11-
not pytest.importorskip("aiohttp", reason="aiohttp is required for this test"),
12-
reason="aiohttp is not installed"
11+
sys.version_info < (3, 9),
12+
reason="Python 3.8 or less is not supported for this test"
1313
)
1414
async def test_websocket_aiohttp_exception_async():
1515
import aiohttp

0 commit comments

Comments
 (0)