icalendar/tox.ini

17 wiersze
457 B
INI

# to run for a specific environment, use ``tox -e ENVNAME``
[tox]
envlist = py27,py36,py37,py38,py39,py310,pypy3
[testenv]
deps =
pytest
coverage
py{27,36}: hypothesis>=3.0
extras =
test
commands =
coverage run --source=src/icalendar --omit=*/tests/* --module pytest []
py{27,36}: coverage run --append --source=src/icalendar --omit=*/tests/* --module pytest [] src/icalendar/tests/hypothesis/
coverage report
coverage html