summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini6
1 files changed, 5 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 0272bda..4723f46 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,7 +1,7 @@
[tox]
skipsdist=True
-envlist = py3
+envlist = py3, pylint
[testenv]
distribute = False
@@ -21,5 +21,9 @@ deps = -r{toxinidir}/requirements.txt
[run]
source=./osdf/,osdfapp.py
+[testenv:pylint]
+whitelist_externals=bash
+commands = bash -c "pylint --reports=y osdf | tee pylint.out"
+
[testenv:py3]
basepython=python3.6