sprockets.mixins.mediatype/tox.ini
Dave Shawley 9d3e53b060
Fix namespace packaging.
Just oops.... I also updated tox.ini so that it checks all-the-things
and works again.
2021-09-19 09:54:47 -04:00

27 lines
494 B
INI

[tox]
envlist = py37,py38,py39,coverage,docs,lint
indexserver =
default = https://pypi.python.org/simple
toxworkdir = build/tox
skip_missing_interpreters = true
[testenv]
usedevelop = true
extras =
dev
msgpack
commands =
python -m unittest tests.py
[testenv:coverage]
commands =
coverage run -m unittest tests.py
coverage report
[testenv:docs]
commands =
sphinx-build -b html -aEn docs {envtmpdir}/sphinx
[testenv:lint]
commands =
flake8 sprockets tests.py