Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup test skips #114

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions tests/checkers/unittest_non_ascii_name.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

from __future__ import annotations

import sys
from collections.abc import Iterable

import astroid
Expand All @@ -20,9 +19,6 @@ class TestNonAsciiChecker(pylint.testutils.CheckerTestCase):
CHECKER_CLASS = pylint.checkers.non_ascii_names.NonAsciiNameChecker
checker: pylint.checkers.non_ascii_names.NonAsciiNameChecker

@pytest.mark.skipif(
sys.version_info < (3, 8), reason="requires python3.8 or higher"
)
def test_kwargs_and_position_only(self) -> None:
"""Even the new position only and keyword only should be found."""
node = astroid.extract_node(
Expand Down
50 changes: 0 additions & 50 deletions tests/functional/d/deprecated/deprecated_methods_py3.py

This file was deleted.

2 changes: 0 additions & 2 deletions tests/functional/d/deprecated/deprecated_methods_py3.rc

This file was deleted.

16 changes: 0 additions & 16 deletions tests/functional/d/deprecated/deprecated_methods_py3.txt

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[testoptions]
max_pyver=3.8
max_pyver=3.9
except_implementations=PyPy
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[testoptions]
max_pyver=3.8
max_pyver=3.9
except_implementations=CPython
2 changes: 0 additions & 2 deletions tests/pyreverse/test_diadefs.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

from __future__ import annotations

import sys
from collections.abc import Iterator
from pathlib import Path

Expand Down Expand Up @@ -248,7 +247,6 @@ def test_known_values4(HANDLER: DiadefsHandler, PROJECT: Project) -> None:
]


@pytest.mark.skipif(sys.version_info < (3, 8), reason="Requires dataclasses")
def test_regression_dataclasses_inference(
HANDLER: DiadefsHandler, get_project: GetProjectCallable
) -> None:
Expand Down
Loading