fonttools/tox.ini
Cosimo Lupo 1cadd9c47f Add defcon to test-requirements.txt
I need some font objects to exercise the fonts_to_quadratic function.
Defcon is still not an install requirement though, as cu2qu should
work with any defcon-like objects (e.g. fontParts?, robofab not so much)
2017-10-31 18:39:17 +00:00

31 lines
498 B
INI

[tox]
envlist = py27, py36, htmlcov
[testenv]
deps =
-rtest-requirements.txt
-rrequirements.txt
commands =
coverage run --parallel-mode -m pytest {posargs}
[testenv:htmlcov]
basepython = python3.6
deps =
coverage
skip_install = true
commands =
coverage combine
coverage report
coverage html
[testenv:codecov]
passenv = *
deps =
coverage
codecov
skip_install = true
ignore_outcome = true
commands =
coverage combine
codecov --env TRAVIS_PYTHON_VERSION