summaryrefslogtreecommitdiffstats
path: root/pike/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'pike/tox.ini')
-rw-r--r--pike/tox.ini11
1 files changed, 9 insertions, 2 deletions
diff --git a/pike/tox.ini b/pike/tox.ini
index cd5327a3..c5e9e5c0 100644
--- a/pike/tox.ini
+++ b/pike/tox.ini
@@ -13,7 +13,7 @@
# limitations under the License.
[tox]
-envlist = py27,pep8,cov
+envlist = py27,pep8,cov,pylint
skipsdist = true
[tox:jenkins]
@@ -27,7 +27,9 @@ max-complexity = 27
[testenv]
setenv =
PYTHONPATH = {toxinidir}/../share
-deps = -r{toxinidir}/requirements.txt
+deps =
+ -r{toxinidir}/requirements.txt
+ -r{toxinidir}/test-requirements.txt
commands =
coverage run --branch manage.py test pike
coverage report --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*" --fail-under=30
@@ -39,3 +41,8 @@ commands=flake8
[testenv:cov]
commands = coverage xml --omit="./venv-tox/*,./.tox/*,*tests*,*__init__.py,*newton_base*,*common*, *site-packages*"
+[testenv:pylint]
+whitelist_externals = bash
+commands =
+ bash -c "\
+ pylint -f parseable --reports=y pike | tee pylint.out"