We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fc60ba commit f78ee91Copy full SHA for f78ee91
test/__init__.py
@@ -860,6 +860,9 @@ def max_message_size_bytes(self):
860
861
862
def recreate_client_context():
863
+ if _IS_SYNC:
864
+ # sync tests don't need to recreate a client context
865
+ return
866
global client_context
867
teardown()
868
client_context = ClientContext()
test/asynchronous/__init__.py
@@ -862,6 +862,9 @@ async def max_message_size_bytes(self):
async def recreate_client_context():
global async_client_context
869
await async_teardown()
870
async_client_context = AsyncClientContext()
0 commit comments