From 58e67634cd24122e1961ac2e223d38465e2ab4c8 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Sun, 10 Jul 2016 09:31:43 -0500 Subject: [PATCH] Add build testenv for future CI work --- tox.ini | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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