1414)
1515
1616from ..fixtures import big_schema_introspection_result , big_schema_sdl # noqa: F401
17- from ..utils import dedent , timeout_factor
17+ from ..utils import dedent
1818
1919
2020def introspection_to_sdl (introspection : IntrospectionQuery ) -> str :
@@ -108,7 +108,7 @@ def can_deep_copy_pickled_schema():
108108
109109 @mark .slow
110110 def describe_deepcopy_and_pickle_big (): # pragma: no cover
111- @mark .timeout (20 * timeout_factor )
111+ @mark .timeout (20 )
112112 def can_deep_copy_big_schema (big_schema_sdl ): # noqa: F811
113113 # introspect the original big schema
114114 big_schema = build_schema (big_schema_sdl )
@@ -119,7 +119,7 @@ def can_deep_copy_big_schema(big_schema_sdl): # noqa: F811
119119 # check that introspecting the copied schema gives the same result
120120 assert introspection_from_schema (copied ) == expected_introspection
121121
122- @mark .timeout (60 * timeout_factor )
122+ @mark .timeout (60 )
123123 def can_pickle_and_unpickle_big_schema (big_schema_sdl ): # noqa: F811
124124 # introspect the original big schema
125125 big_schema = build_schema (big_schema_sdl )
@@ -153,7 +153,7 @@ def can_pickle_and_unpickle_big_schema(big_schema_sdl): # noqa: F811
153153 finally :
154154 sys .setrecursionlimit (limit )
155155
156- @mark .timeout (60 * timeout_factor )
156+ @mark .timeout (60 )
157157 def can_deep_copy_pickled_big_schema (big_schema_sdl ): # noqa: F811
158158 # introspect the original big schema
159159 big_schema = build_schema (big_schema_sdl )
0 commit comments