Skip to content

Commit 3eb9c51

Browse files
committed
Remove pytest skip.
1 parent 3b42195 commit 3eb9c51

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

tests/test_flake8_params.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# stdlib
22
import ast
3-
import sys
43
from typing import List
54

65
# 3rd party
7-
import pytest
86
from coincidence.regressions import AdvancedFileRegressionFixture
97
from domdf_python_tools.paths import PathPlus
108

@@ -18,7 +16,6 @@ def results(s: str) -> List[str]:
1816
return ["{}:{}: {}".format(*r) for r in Plugin(ast.parse(s)).run()]
1917

2018

21-
@pytest.mark.skipif(sys.version_info >= (3, 12), reason="Line numbers are offset on earlier versions")
2219
def test_plugin(advanced_file_regression: AdvancedFileRegressionFixture):
2320
res = results(example_code)
2421
advanced_file_regression.check('\n'.join(res))

0 commit comments

Comments
 (0)