2014-05-30 14:46:40 -05:00
|
|
|
[tox]
|
|
|
|
minversion = 1.6
|
2014-10-15 12:06:32 +02:00
|
|
|
envlist = py33,py34,pep8
|
2014-04-02 12:06:10 -05:00
|
|
|
|
|
|
|
[testenv]
|
2014-05-31 02:58:39 +00:00
|
|
|
install_command = pip install -U {opts} {packages}
|
2014-04-02 12:06:10 -05:00
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
2014-05-31 02:58:39 +00:00
|
|
|
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
2014-04-02 12:06:10 -05:00
|
|
|
|
|
|
|
[testenv:pep8]
|
|
|
|
commands = flake8
|
|
|
|
|
|
|
|
[testenv:venv]
|
|
|
|
commands = {posargs}
|
|
|
|
|
2014-05-30 16:12:22 -05:00
|
|
|
[testenv:mkical]
|
|
|
|
commands = mkdir -p ical
|
2014-10-04 03:29:36 +00:00
|
|
|
python arbiter/convert.py -i ./ical -c
|
2014-05-30 16:12:22 -05:00
|
|
|
|
2014-04-02 12:06:10 -05:00
|
|
|
[flake8]
|
|
|
|
show-source = True
|
2014-05-30 14:46:40 -05:00
|
|
|
exclude = .venv,.tox,dist,doc,*.egg
|
2014-10-06 16:49:54 +00:00
|
|
|
ignore = H803
|