15d58bbb6d
We'll need to upload this module to PyPI in order to properly integrate with the OpenStack Infrastructure. Unfortunately, there is already a module there going by the 'arbiter' name. This switches the module name to 'yaml2ical', which is not sounding nice, but at least is functionally correct. The git repository itself shall be renamed once this is merged. Change-Id: I896bcbe7be8c6a017015b428c6ff0d39a4974a04
25 lines
504 B
INI
25 lines
504 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py33,py34,pep8
|
|
|
|
[testenv]
|
|
install_command = pip install -U {opts} {packages}
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
commands = python setup.py testr --slowest --testr-args='{posargs}'
|
|
|
|
[testenv:pep8]
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:mkical]
|
|
commands = mkdir -p ical
|
|
python yaml2ical/convert.py -i ./ical -c
|
|
|
|
[flake8]
|
|
show-source = True
|
|
exclude = .venv,.tox,dist,doc,*.egg
|
|
ignore = H803
|