summaryrefslogtreecommitdiff
path: root/tox.ini
blob: dada4ac07a55727bb704dbc42c242dbc64539ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tox]
minversion = 1.6
envlist = pep8

[testenv]
deps = -r{toxinidir}/test-requirements.txt

[testenv:pep8]
commands =
    flake8 oslosphinx

[testenv:venv]
commands = {posargs}

[testenv:docs]
commands = python setup.py build_sphinx

[flake8]
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools
show-source = True