Skip to content

Commit

Permalink
Skip TDL recursion test for Python 3.6
Browse files Browse the repository at this point in the history
Getting an appropriate recursion limit is flaky for Python 3.6.
  • Loading branch information
goodmami committed Jul 20, 2020
1 parent c464a5c commit 8297c98
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/tdl_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,6 +495,8 @@ def test_parse_cons_list():
tdlparse('a := b & [ ATTR < [] [] > ].')


@pytest.mark.skipif(sys.version_info < (3, 7),
reason='recursion test is flaky on Python 3.6')
@pytest.mark.slow
def test_issue_294():
# check for recursion error
Expand Down

0 comments on commit 8297c98

Please sign in to comment.