yaml2ical/tox.ini
Thierry Carrez 923218b121 Use yaml2ical as CLI, clean up useless const.py
Declare a yaml2ical entry point to replace convert.py.

Clean up the useless const.py and move the only remaining constant to
meeting.py.

Change-Id: I6204aa2c9d96640e50167a9df78686a1cd25e9ec
2015-01-16 17:39:03 +01:00

24 lines
474 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 = yaml2ical -y meetings/ -i icals/ -f
[flake8]
show-source = True
exclude = .venv,.tox,dist,doc,*.egg
ignore = H803