diff options
| author | Anthony Sottile <asottile@umich.edu> | 2021-08-15 18:47:16 -0400 |
|---|---|---|
| committer | Anthony Sottile <asottile@umich.edu> | 2021-08-15 19:00:43 -0400 |
| commit | d34581b83f75e12e2c021577aa2523eea8a9b590 (patch) | |
| tree | f9312ee5f37d725677028e426a244bb5befe5ca3 /tests/integration | |
| parent | 281f3f8b43106023bf3fb160666384394031a9fd (diff) | |
| download | flake8-d34581b83f75e12e2c021577aa2523eea8a9b590.tar.gz | |
test using python3.10
Diffstat (limited to 'tests/integration')
| -rw-r--r-- | tests/integration/test_main.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/integration/test_main.py b/tests/integration/test_main.py index 16ecba0..8ad7654 100644 --- a/tests/integration/test_main.py +++ b/tests/integration/test_main.py @@ -191,8 +191,10 @@ def test_tokenization_error_but_not_syntax_error(tmpdir, capsys): expected = "t.py:2:1: E999 SyntaxError: end of file (EOF) in multi-line statement\n" # noqa: E501 elif sys.version_info < (3, 8): # pragma: no cover (<cp38) expected = "t.py:2:1: E902 TokenError: EOF in multi-line statement\n" - else: # pragma: no cover (cp38+) + elif sys.version_info < (3, 10): # pragma: no cover (cp38+) expected = "t.py:1:8: E999 SyntaxError: unexpected EOF while parsing\n" + else: # pragma: no cover (cp310+) + expected = "t.py:1:10: E999 SyntaxError: unexpected EOF while parsing\n" # noqa: E501 out, err = capsys.readouterr() assert out == expected @@ -207,8 +209,10 @@ def test_tokenization_error_is_a_syntax_error(tmpdir, capsys): if hasattr(sys, "pypy_version_info"): # pragma: no cover (pypy) expected = "t.py:3:2: E999 IndentationError: unindent does not match any outer indentation level\n" # noqa: E501 - else: # pragma: no cover (cpython) + elif sys.version_info < (3, 10): # pragma: no cover (<cp310) expected = "t.py:3:5: E999 IndentationError: unindent does not match any outer indentation level\n" # noqa: E501 + else: # pragma: no cover (cp310+) + expected = "t.py:3:7: E999 IndentationError: unindent does not match any outer indentation level\n" # noqa: E501 out, err = capsys.readouterr() assert out == expected |
