
The iCalendar spec expects a meeting vEvent to include a datetime stamp and a unique ID for each instance. This adds these values to the generated output. Minor cleanup also included since I was touching code around them and noticed little nits. Change-Id: I4753571850665a2f28a6799b84ead4c31a275cc7 Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
28 lines
560 B
INI
28 lines
560 B
INI
[tox]
|
|
minversion = 1.6
|
|
envlist = py37,py36,py35,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}'
|
|
usedevelop = true
|
|
|
|
[testenv:pep8]
|
|
basepython = python3
|
|
commands = flake8
|
|
|
|
[testenv:venv]
|
|
basepython = python3
|
|
commands = {posargs}
|
|
|
|
[testenv:mkical]
|
|
basepython = python3
|
|
commands = yaml2ical -y meetings/ -i icals/ -f
|
|
|
|
[flake8]
|
|
show-source = True
|
|
exclude = .venv,.tox,dist,doc,*.egg
|
|
ignore = H803
|