icalendar/tox.ini

24 wiersze
582 B
INI
Czysty Zwykły widok Historia

# to run for a specific environment, use ``tox -e ENVNAME``
[tox]
2022-08-13 11:55:36 +00:00
envlist = py27,py37,py38,py39,py310,pypy3,docs
[testenv]
usedevelop=True
2013-10-29 17:43:46 +00:00
deps =
2014-05-29 16:56:10 +00:00
pytest
coverage
py{27}: hypothesis>=3.0
commands =
coverage run --source=src/icalendar --omit=*/tests/* --module pytest []
py{27}: 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
[testenv:docs]
deps =
-r {toxinidir}/requirements_docs.txt
2022-06-24 12:22:42 +00:00
changedir = docs
2022-08-13 09:12:58 +00:00
allowlist_externals = make
commands =
make html