@@ -521,7 +521,6 @@ async def asyncReturnErrorWithExtensions(self, _info):
521521 ],
522522 )
523523
524- @pytest .mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
525524 def handles_sync_errors_combined_with_async_ones ():
526525 is_async_resolver_finished = False
527526
@@ -618,7 +617,6 @@ def resolve_error(*_args):
618617 ],
619618 )
620619
621- @pytest .mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
622620 def uses_the_inline_operation_if_no_operation_name_is_provided ():
623621 schema = GraphQLSchema (
624622 GraphQLObjectType ("Type" , {"a" : GraphQLField (GraphQLString )})
@@ -632,7 +630,6 @@ class Data:
632630 result = execute_sync (schema , document , Data ())
633631 assert result == ({"a" : "b" }, None )
634632
635- @pytest .mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
636633 def uses_the_only_operation_if_no_operation_name_is_provided ():
637634 schema = GraphQLSchema (
638635 GraphQLObjectType ("Type" , {"a" : GraphQLField (GraphQLString )})
@@ -646,7 +643,6 @@ class Data:
646643 result = execute_sync (schema , document , Data ())
647644 assert result == ({"a" : "b" }, None )
648645
649- @pytest .mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
650646 def uses_the_named_operation_if_operation_name_is_provided ():
651647 schema = GraphQLSchema (
652648 GraphQLObjectType ("Type" , {"a" : GraphQLField (GraphQLString )})
0 commit comments