diff --git a/tests/aio/test_aio_client.py b/tests/aio/test_aio_client.py index 899de476..18b67624 100644 --- a/tests/aio/test_aio_client.py +++ b/tests/aio/test_aio_client.py @@ -147,8 +147,6 @@ async def get_call(*args, **kwargs): assert await (aio_client.get_launch_ui_url('test_launch_uuid')) == expected_url -@pytest.mark.skipif(sys.version_info < (3, 8), - reason="the test requires AsyncMock which was introduced in Python 3.8") @pytest.mark.parametrize('default', [True, False]) @mock.patch('reportportal_client.aio.client.aiohttp.TCPConnector') @pytest.mark.asyncio @@ -165,8 +163,6 @@ async def test_verify_ssl_default(connector_mock: mock.Mock, default: bool): assert len(ssl_context.get_ca_certs()) > 0 -@pytest.mark.skipif(sys.version_info < (3, 8), - reason="the test requires AsyncMock which was introduced in Python 3.8") @pytest.mark.parametrize('param_value', [False, None]) @mock.patch('reportportal_client.aio.client.aiohttp.TCPConnector') @pytest.mark.asyncio @@ -179,8 +175,6 @@ async def test_verify_ssl_off(connector_mock: mock.Mock, param_value): assert ssl_context is not None and isinstance(ssl_context, bool) and not ssl_context -@pytest.mark.skipif(sys.version_info < (3, 8), - reason="the test requires AsyncMock which was introduced in Python 3.8") @mock.patch('reportportal_client.aio.client.aiohttp.TCPConnector') @pytest.mark.asyncio async def test_verify_ssl_str(connector_mock: mock.Mock):