hypercore-crypto/tox.ini

50 lines
986 B
INI
Raw Normal View History

2019-08-07 06:31:30 +00:00
[tox]
envlist =
{py36,py37,py38}
2019-08-07 06:31:30 +00:00
lint
sort
format
type
docs
skip_missing_interpreters = True
isolated_build = True
[testenv]
deps =
2019-08-07 06:31:30 +00:00
pytest
pytest-cov
pytest-mock
commands =
2019-08-07 06:31:30 +00:00
pytest test/ --cov={toxinidir}/hypercore_crypto/ --no-cov-on-fail {posargs}
[testenv:lint]
skipdist = True
2019-10-06 13:14:09 +00:00
deps = flake8
commands = flake8 {posargs} hypercore_crypto/ test/
2019-08-07 06:31:30 +00:00
[testenv:sort]
skipdist = True
2019-10-06 13:14:09 +00:00
deps = isort
commands = isort {posargs:-rc -c} -sp setup.cfg hypercore_crypto/ test/
2019-08-07 06:31:30 +00:00
[testenv:format]
skipdist = True
2019-10-06 13:14:09 +00:00
deps = black
commands = black {posargs:--check} hypercore_crypto/ test/
2019-08-07 06:31:30 +00:00
[testenv:type]
skipdist = True
2019-10-06 13:14:09 +00:00
deps = mypy
commands = mypy hypercore_crypto/ test/
2019-08-07 06:31:30 +00:00
[testenv:release]
description = make a release
deps = twine
2019-08-07 06:31:30 +00:00
commands =
2019-11-03 15:44:42 +00:00
rm -rf {toxworkdir}/dist
python -m setup sdist --dist-dir {toxworkdir}/dist bdist_wheel
python -m setup sdist --dist-dir {toxworkdir}/dist bdist_egg
2019-08-07 06:31:30 +00:00
twine upload {toxworkdir}/dist/*
2019-11-03 15:44:42 +00:00
whitelist_externals =
rm