Files
httpbin/tox.ini
T
Ian Cordasco dc7e81c4a1 Add machinery to create/upload releases
This uses twine to upload wheels and source distributions that we create
for httpbin.
2016-01-27 10:33:59 -06:00

16 lines
246 B
INI

[tox]
envlist = py27,py34
[testenv]
commands=python test_httpbin.py
[testenv:release]
skipdist = true
usedevelop = false
deps =
twine>=1.6.0
wheel
commands =
python setup.py sdist bdist_wheel
twine upload --skip-existing dist/*