blob: 4682314cbc9df59f335fe6da7099ff54cb12d70d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
[tox]
minversion = 1.6
envlist = pep8
[testenv]
deps = -r{toxinidir}/test-requirements.txt
downloadcache = {toxworkdir}/_download
[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
|