diff options
author | Moody <mooodyhunter@outlook.com> | 2022-04-09 12:56:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-09 13:56:11 +0200 |
commit | 7a856be869442245c0d88ea2e2ba9d5153f0ee9e (patch) | |
tree | 5c7f0da722f4ccbf0910259a9609bc3eb710265e /tests/checkers/unittest_refactoring.py | |
parent | 52daa839be2a2616540630c1824a67000780a218 (diff) | |
download | pylint-git-7a856be869442245c0d88ea2e2ba9d5153f0ee9e.tar.gz |
increase timeout value for test_issue_5724 (#6241)
Diffstat (limited to 'tests/checkers/unittest_refactoring.py')
-rw-r--r-- | tests/checkers/unittest_refactoring.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkers/unittest_refactoring.py b/tests/checkers/unittest_refactoring.py index fda53098d..37a40a472 100644 --- a/tests/checkers/unittest_refactoring.py +++ b/tests/checkers/unittest_refactoring.py @@ -20,7 +20,7 @@ def test_process_tokens() -> None: assert cm.value.code == 0 -@pytest.mark.timeout(25) +@pytest.mark.timeout(60) def test_issue_5724() -> None: """Regression test for parsing of pylint disable pragma's.""" with pytest.raises(SystemExit) as cm: |