Remove tests of unsupported Python versions (#642)

This commit is contained in:
Adrien
2024-11-13 09:40:46 +01:00
committed by GitHub
parent 1741a126b3
commit ed7eefac6f
2 changed files with 2 additions and 14 deletions

View File

@@ -1,5 +1,4 @@
import asyncio
import sys
import uuid
import grpclib
@@ -91,9 +90,6 @@ async def test_trailer_only_error_stream_unary(
@pytest.mark.asyncio
@pytest.mark.skipif(
sys.version_info < (3, 8), reason="async mock spy does works for python3.8+"
)
async def test_service_call_mutable_defaults(mocker):
async with ChannelFor([ThingService()]) as channel:
client = ThingServiceClient(channel)