Commit f4ff931f authored by Kirill Smelkov's avatar Kirill Smelkov

tox += lint

Add minimal linting step that verifies manifest and built sdist/wheel.
Suggested by @bertjwregeer on https://github.com/Pylons/zodburi/pull/29#issuecomment-836915440.
parent f87f1b86
[tox]
envlist =
lint
{py27,py35,py36,pypy,pypy3}-{zodb4,zodb5},{py37,py38}-zodb5,cover,docs
[testenv]
......@@ -37,3 +38,17 @@ commands =
deps =
Sphinx
pylons-sphinx-themes
[testenv:lint]
skip_install = true
commands =
check-manifest
# build sdist/wheel
python setup.py sdist
python setup.py bdist_wheel
twine check dist/*
deps =
check-manifest
readme_renderer
twine
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment