aboutsummaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini36
1 files changed, 36 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
new file mode 100644
index 0000000..52aa512
--- /dev/null
+++ b/tox.ini
@@ -0,0 +1,36 @@
+[flake8]
+max-line-length = 100
+exclude = fietsboek/alembic
+per-file-ignores =
+ fietsboek/models/__init__.py:F401
+
+[tox]
+envlist = python,pylint,flake8
+
+[testenv]
+deps = pytest
+extras = testing
+passenv =
+ TERM
+commands =
+ pytest {posargs}
+
+[testenv:pylint]
+deps = pylint
+usedevelop = true
+commands =
+ pylint fietsboek
+
+[testenv:flake8]
+deps = flake8
+usedevelop = true
+commands =
+ flake8 fietsboek
+
+[testenv:sphinx]
+deps = sphinx
+usedevelop = true
+allowlist_externals = make
+changedir={toxinidir}{/}doc
+commands =
+ make html