summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-01 14:07:08 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-05-01 15:03:11 +0200
commitce8822807891ba7c43ce09ba3b955007abef73a4 (patch)
tree3b825d0fee15a1b4707a034c7896a84b2af38840
parent07b425e9c2dd5447ef030c141dc6218d83cf9852 (diff)
downloadpylint-git-ce8822807891ba7c43ce09ba3b955007abef73a4.tar.gz
Remove the test specific configuration file
Not necessary anymore as we fixed all the problem or disabled them.
-rw-r--r--tests/.test_pylintrc19
-rw-r--r--tox.ini4
2 files changed, 2 insertions, 21 deletions
diff --git a/tests/.test_pylintrc b/tests/.test_pylintrc
deleted file mode 100644
index 3d88bb103..000000000
--- a/tests/.test_pylintrc
+++ /dev/null
@@ -1,19 +0,0 @@
-# The idea is to use this file and remove disabled rule until we're able to merge with the pylintrc used for pylint
-# itself once the change required to fix are small enough
-
-[master]
-ignore=functional,input,data,regrtest_data
-
-[MESSAGES CONTROL]
-disable=
- attribute-defined-outside-init,
- duplicate-code,
- invalid-name,
- missing-docstring,
- protected-access,
- too-few-public-methods,
- # handled by black
- format,
- redefined-outer-name,
- undefined-loop-variable,
- fixme,
diff --git a/tox.ini b/tox.ini
index 0a8d8d283..b44a200e3 100644
--- a/tox.ini
+++ b/tox.ini
@@ -8,9 +8,9 @@ deps =
isort
pytest
commands =
- pylint -rn --rcfile={toxinidir}/pylintrc --load-plugins=pylint.extensions.docparams, pylint.extensions.mccabe {toxinidir}/pylint
# This would be greatly simplified by a solution for https://github.com/PyCQA/pylint/issues/352
- pylint -rn --rcfile={toxinidir}/tests/.test_pylintrc --load-plugins=pylint.extensions.docparams, pylint.extensions.mccabe \
+ pylint -rn --rcfile={toxinidir}/pylintrc --load-plugins=pylint.extensions.docparams, pylint.extensions.mccabe \
+ {toxinidir}/pylint \
{toxinidir}/tests/message/ \
{toxinidir}/tests/checkers/ \
{toxinidir}/tests/extensions/ \