aboutsummaryrefslogtreecommitdiffstats
path: root/nlp/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'nlp/tox.ini')
-rw-r--r--nlp/tox.ini26
1 files changed, 26 insertions, 0 deletions
diff --git a/nlp/tox.ini b/nlp/tox.ini
new file mode 100644
index 0000000..2b6716e
--- /dev/null
+++ b/nlp/tox.ini
@@ -0,0 +1,26 @@
+# content of: tox.ini , put in same dir as setup.py
+[tox]
+envlist = py36,pep8,cov
+skipsdist = true
+
+[flake8]
+ignore = E501,E722
+exclude = ./venv-tox,./.tox,./venv,./docs
+
+[testenv:pep8]
+deps = flake8
+commands = flake8
+
+[testenv]
+deps = -r{toxinidir}/requirements.txt
+commands = pytest
+
+[testenv:py36]
+commands =
+ {[testenv]commands}
+
+[testenv:cov]
+deps = pytest
+ pytest-cov
+commands = pytest --cov-report=html
+