1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 20:19:46 +00:00

adding pylint to test

This commit is contained in:
deadc0de6
2021-04-30 21:32:44 +02:00
parent 6a51a7abad
commit 537eb95d59
2 changed files with 11 additions and 1 deletions

View File

@@ -3,3 +3,4 @@ nose; python_version > '3.4'
coverage; python_version > '3.4'
coveralls; python_version > '3.4'
pyflakes; python_version > '3.4'
pylint; python_version > '3.4'

View File

@@ -20,7 +20,16 @@ pyflakes dotdrop/
pyflakes tests/
# pylint
#pylint --disable=R0902 --disable=R0913 --disable=R0903 --disable=R0914 dotdrop/
echo "testing with pylint"
pylint \
--disable=R0902 \
--disable=R0913 \
--disable=R0903 \
--disable=R0914 \
--disable=R0915 \
--disable=R0912 \
--disable=R0911 \
dotdrop/
# retrieve the nosetests binary
nosebin="nosetests"