@@ -521,7 +521,6 @@ async def asyncReturnErrorWithExtensions(self, _info):
521
521
],
522
522
)
523
523
524
- @pytest .mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
525
524
def handles_sync_errors_combined_with_async_ones ():
526
525
is_async_resolver_finished = False
527
526
@@ -618,7 +617,6 @@ def resolve_error(*_args):
618
617
],
619
618
)
620
619
621
- @pytest .mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
622
620
def uses_the_inline_operation_if_no_operation_name_is_provided ():
623
621
schema = GraphQLSchema (
624
622
GraphQLObjectType ("Type" , {"a" : GraphQLField (GraphQLString )})
@@ -632,7 +630,6 @@ class Data:
632
630
result = execute_sync (schema , document , Data ())
633
631
assert result == ({"a" : "b" }, None )
634
632
635
- @pytest .mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
636
633
def uses_the_only_operation_if_no_operation_name_is_provided ():
637
634
schema = GraphQLSchema (
638
635
GraphQLObjectType ("Type" , {"a" : GraphQLField (GraphQLString )})
@@ -646,7 +643,6 @@ class Data:
646
643
result = execute_sync (schema , document , Data ())
647
644
assert result == ({"a" : "b" }, None )
648
645
649
- @pytest .mark .filterwarnings ("ignore:.* was never awaited:RuntimeWarning" )
650
646
def uses_the_named_operation_if_operation_name_is_provided ():
651
647
schema = GraphQLSchema (
652
648
GraphQLObjectType ("Type" , {"a" : GraphQLField (GraphQLString )})
0 commit comments