openapi-generator/samples/server/petstore/flaskConnexion-python2/tox.ini
Kenny Jones 54b670b7e0 [python-flask] Create main function and entrypoint (#6814)
Enable the creation of the entrypoint so that the server can be started
using a named command instead of needing to always use `python -m` to
run the server.
2017-10-26 20:38:30 +08:00

10 lines
149 B
INI

[tox]
envlist = py27, py35
[testenv]
deps=-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands=
nosetests \
[]