File: __init__.py

package info (click to toggle)
graphql-core 3.2.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,452 kB
  • sloc: python: 46,922; makefile: 26; sh: 13
file content (13 lines) | stat: -rw-r--r-- 308 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Test utilities"""

from platform import python_implementation

from .dedent import dedent
from .gen_fuzz_strings import gen_fuzz_strings


# some tests can take much longer on PyPy
timeout_factor = 4 if python_implementation() == "PyPy" else 1


__all__ = ["dedent", "gen_fuzz_strings", "timeout_factor"]