diff --git a/tox.ini b/tox.ini index f0bcb28..a138e1b 100644 --- a/tox.ini +++ b/tox.ini @@ -110,15 +110,24 @@ deps = commands = python setup.py check -r -s -[testenv:release] +# Release tooling +[testenv:build] basepython = python3 skip_install = true deps = wheel setuptools - twine >= 1.5.0 commands = python setup.py -q sdist bdist_wheel + +[testenv:release] +basepython = python3 +skip_install = true +deps = + {[testenv:build]deps} + twine >= 1.5.0 +commands = + {[testenv:build]commands} twine upload --skip-existing dist/* # Flake8 Configuration