summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Cordasco <graffatcolmingov@gmail.com>2016-07-10 09:31:43 -0500
committerIan Cordasco <graffatcolmingov@gmail.com>2016-07-10 09:31:43 -0500
commit58e67634cd24122e1961ac2e223d38465e2ab4c8 (patch)
treedb0f5cc74325c61cacdb7ff325287df8d3a523c1
parent2dec2ebc6e3638b665c5a2c36d41363e046eeb13 (diff)
downloadflake8-58e67634cd24122e1961ac2e223d38465e2ab4c8.tar.gz
Add build testenv for future CI work
-rw-r--r--tox.ini13
1 files 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