icalendar/tox.ini

17 wiersze
457 B
INI
Czysty Zwykły widok Historia

# to run for a specific environment, use ``tox -e ENVNAME``
[tox]
envlist = py27,py36,py37,py38,py39,py310,pypy3
[testenv]
2013-10-29 17:43:46 +00:00
deps =
2014-05-29 16:56:10 +00:00
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/
2014-05-29 16:56:10 +00:00
coverage report
coverage html