summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-03-22 08:31:58 +0100
committerGitHub <noreply@github.com>2023-03-22 08:31:58 +0100
commit7d26dcf3ee9a0c033f1529d09fe1f600b527c1cc (patch)
tree9185b9589588d9cd950d34af4536b7b0f7ecf716 /tests
parentd6f3ae8d72e65e89560403ca2241ec604b418bdf (diff)
downloadpylint-git-7d26dcf3ee9a0c033f1529d09fe1f600b527c1cc.tar.gz
Fix incorrect preferred-modules matches (#8481)
Co-authored-by: d33bs <dave.bunten@cuanschutz.edu> (cherry picked from commit d64c0cc1484b0cbea5fd3a9dfac4c0d6ddc7d1aa) Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/checkers/unittest_imports.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/checkers/unittest_imports.py b/tests/checkers/unittest_imports.py
index 7544e3422..d454c8161 100644
--- a/tests/checkers/unittest_imports.py
+++ b/tests/checkers/unittest_imports.py
@@ -192,6 +192,23 @@ class TestImportsChecker(CheckerTestCase):
# assert there were no errors
assert len(errors) == 0
+ # Test for challenges with preferred modules indefinite matches
+ Run(
+ [
+ f"{os.path.join(REGR_DATA, 'preferred_module/unpreferred_submodule.py')}",
+ "-d all",
+ "-e preferred-module",
+ # prefer pathlib instead of random (testing to avoid regression)
+ # pathlib shouldn't match with path, which is in the test file
+ "--preferred-modules=random:pathlib",
+ ],
+ exit=False,
+ )
+ _, errors = capsys.readouterr()
+
+ # Assert there were no errors
+ assert len(errors) == 0
+
@staticmethod
def test_allow_reexport_package(capsys: CaptureFixture[str]) -> None:
"""Test --allow-reexport-from-package option."""