diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-10 09:31:43 -0500 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-10 09:31:43 -0500 |
| commit | 58e67634cd24122e1961ac2e223d38465e2ab4c8 (patch) | |
| tree | db0f5cc74325c61cacdb7ff325287df8d3a523c1 | |
| parent | 2dec2ebc6e3638b665c5a2c36d41363e046eeb13 (diff) | |
| download | flake8-58e67634cd24122e1961ac2e223d38465e2ab4c8.tar.gz | |
Add build testenv for future CI work
| -rw-r--r-- | tox.ini | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -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 |
