diff options
| author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2022-05-13 17:47:55 +0200 |
|---|---|---|
| committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2022-05-13 17:47:55 +0200 |
| commit | 30042ece14dd32d6569e04c8984ece95f00ecc21 (patch) | |
| tree | f07839400ac214d2e92a7e4e9155f27748993c25 | |
| parent | ac244bce7d27a766f4639ab035ab458e19dcb314 (diff) | |
| parent | 57014d6a45672d76f6a58a9533ff998268525165 (diff) | |
| download | pylint-git-30042ece14dd32d6569e04c8984ece95f00ecc21.tar.gz | |
Merge branch 'maintenance/2.13.x' into main following 2.13.9 release
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | tests/test_self.py | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -325,7 +325,7 @@ Release date: TBA What's New in Pylint 2.13.9? ============================ -Release date: TBA +Release date: 2022-05-13 * Respect ignore configuration options with ``--recursive=y``. diff --git a/tests/test_self.py b/tests/test_self.py index a073c735b..38dea4257 100644 --- a/tests/test_self.py +++ b/tests/test_self.py @@ -1276,7 +1276,7 @@ class TestRunTC: [ join(HERE, "regrtest_data", "directory"), "--recursive=y", - "--ignore-pattern=ignored_.*", + "--ignore-patterns=ignored_.*", ], code=0, ) @@ -1285,7 +1285,7 @@ class TestRunTC: [ join(HERE, "regrtest_data", "directory"), "--recursive=y", - "--ignore-pattern=failing.*", + "--ignore-patterns=failing.*", ], code=0, ) @@ -1300,7 +1300,7 @@ class TestRunTC: [ join(HERE, "regrtest_data", "directory"), "--recursive=y", - "--ignore-path=.*ignored.*", + "--ignore-paths=.*ignored.*", ], code=0, ) @@ -1309,7 +1309,7 @@ class TestRunTC: [ join(HERE, "regrtest_data", "directory"), "--recursive=y", - "--ignore-path=.*failing.*", + "--ignore-paths=.*failing.*", ], code=0, ) |
