I use pylint in the project and something bothers me.
For example, I create a unit test (subclass of unittest.TestCase). This parent class has many methods, so pylint says "R0904: Too many public methods." To "resolve" this warning, I will disable this check locally.
But I need to write a lot of unit test, and this prevents me from turning off this check locally every time.
So, I'm looking for a way to disable this check for the whole subclass of unittest.TestCase. There may be pylint in the configuration file, but I did not find anything.
Do you have an idea to do this?
Many thanks for your help.
source share