Increase recursion limit (broke xdist tests)

This commit is contained in:
Anthony Sottile 2018-10-08 12:57:45 -07:00
parent 4f631440be
commit a86035625c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ pytest_version_info = tuple(map(int, pytest.__version__.split(".")[:3]))
@pytest.fixture
def limited_recursion_depth():
before = sys.getrecursionlimit()
sys.setrecursionlimit(100)
sys.setrecursionlimit(150)
yield
sys.setrecursionlimit(before)