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 04c4dd1 commit 4aeece0Copy full SHA for 4aeece0
1 file changed
tests/execution/test_stream.py
@@ -1187,11 +1187,10 @@ async def friend_list(_info):
1187
}
1188
1189
@pytest.mark.asyncio()
1190
- @pytest.mark.filterwarnings("ignore:.* was never awaited:RuntimeWarning")
1191
async def filters_payloads_that_are_nulled_by_a_later_synchronous_error():
1192
document = parse(
1193
"""
1194
- query {
+ query {
1195
nestedObject {
1196
nestedFriendList @stream(initialCount: 0) {
1197
name
@@ -1203,8 +1202,8 @@ async def filters_payloads_that_are_nulled_by_a_later_synchronous_error():
1203
1202
)
1204
1205
async def friend_list(_info):
1206
- await sleep(0)
1207
- yield friends[0]
+ await sleep(0) # pragma: no cover
+ yield friends[0] # pragma: no cover
1208
1209
result = await complete(
1210
document,
0 commit comments