diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-11-22 11:02:31 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-11-24 10:13:20 +0100 |
commit | 6e44febc327defc28246f01d9c4027fbd33639a8 (patch) | |
tree | 9fe58223cac7e8b235aecbd79cb94ed79cb0f195 | |
parent | e8fa46928d91893723a9a038fde2d274d535fd1f (diff) | |
download | pylint-git-6e44febc327defc28246f01d9c4027fbd33639a8.tar.gz |
Add changelog and warning about unstable API in testutil
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | doc/whatsnew/2.12.rst | 7 |
2 files changed, 11 insertions, 1 deletions
@@ -15,6 +15,11 @@ Release date: TBA Closes #4982 +* Introduced primer tests and a configuration tests framework. The helper classes available in + ``pylint/testutil/`` are still unstable and might be modified in the near future. + + Closes #4412 #5287 + * Fix ``install graphiz`` message which isn't needed for puml output format. * Fix a crash in the ``check_elif`` extensions where an undetected if in a comprehension diff --git a/doc/whatsnew/2.12.rst b/doc/whatsnew/2.12.rst index eb0e7a9a7..dae98d485 100644 --- a/doc/whatsnew/2.12.rst +++ b/doc/whatsnew/2.12.rst @@ -35,7 +35,7 @@ New checkers * Fix ``useless-super-delegation`` false positive when default keyword argument is a variable. -* Added new checker `use-implicit-booleanness``: Emitted when using collection +* Added new checker ``use-implicit-booleanness``: Emitted when using collection literals for boolean comparisons * Added new checker ``use-implicit-booleaness-not-comparison``: Emitted when @@ -204,3 +204,8 @@ Other Changes * Fix crash on ``open()`` calls when the ``mode`` argument is not a simple string. Partially closes #5321 + +* Introduced primer tests and a configuration tests framework. The helper classes available in + ``pylint/testutil/`` are still unstable and might be modified in the near future. + + Closes #4412 #5287 |