@@ -566,6 +566,7 @@ async def asyncReturnErrorWithExtensions(self, _info):
566
566
],
567
567
)
568
568
569
+ @mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
569
570
def handles_sync_errors_combined_with_async_ones ():
570
571
is_async_resolver_finished = False
571
572
@@ -616,6 +617,7 @@ async def async_resolver(_obj, _info):
616
617
],
617
618
)
618
619
620
+ @mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
619
621
def full_response_path_is_included_for_non_nullable_fields ():
620
622
def resolve_ok (* _args ):
621
623
return {}
@@ -665,6 +667,7 @@ def resolve_error(*_args):
665
667
],
666
668
)
667
669
670
+ @mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
668
671
def uses_the_inline_operation_if_no_operation_name_is_provided ():
669
672
schema = GraphQLSchema (
670
673
GraphQLObjectType ("Type" , {"a" : GraphQLField (GraphQLString )})
@@ -678,6 +681,7 @@ class Data:
678
681
result = execute_sync (schema , document , Data ())
679
682
assert result == ({"a" : "b" }, None )
680
683
684
+ @mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
681
685
def uses_the_only_operation_if_no_operation_name_is_provided ():
682
686
schema = GraphQLSchema (
683
687
GraphQLObjectType ("Type" , {"a" : GraphQLField (GraphQLString )})
@@ -691,6 +695,7 @@ class Data:
691
695
result = execute_sync (schema , document , Data ())
692
696
assert result == ({"a" : "b" }, None )
693
697
698
+ @mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
694
699
def uses_the_named_operation_if_operation_name_is_provided ():
695
700
schema = GraphQLSchema (
696
701
GraphQLObjectType ("Type" , {"a" : GraphQLField (GraphQLString )})
0 commit comments