blob: a3509756d79a1216c719f75bbdc46a660d995d2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[tox]
envlist = py26,py27,py33,py34,flake8
[testenv]
commands = nosetests {posargs}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
[testenv:cover]
commands = nosetests --with-coverage {posargs}
[testenv:flake8]
commands = flake8 {posargs}
[testenv:venv]
commands = {posargs}
[flake8]
#show-source = True
# E265 = comment blocks like @{ section, which it can't handle
ignore = E265
max-line-length = 120
exclude = .tox,.venv,build,dist,doc,git/ext/
|