blob: 52aa5121a284490e09349cd02a797643a2bea780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
|