mirror of https://github.com/pallets/flask.git
Added a tox-test command that runs Flask tests with tox
This commit is contained in:
parent
2594602076
commit
c18f032a82
|
@ -7,3 +7,4 @@ dist
|
|||
*.egg
|
||||
*.egg-info
|
||||
_mailinglist
|
||||
.tox
|
||||
|
|
3
Makefile
3
Makefile
|
@ -5,6 +5,9 @@ all: clean-pyc test
|
|||
test:
|
||||
python setup.py test
|
||||
|
||||
tox-test:
|
||||
PYTHONDONTWRITEBYTECODE= tox
|
||||
|
||||
ext-test:
|
||||
python tests/flaskext_test.py --browse
|
||||
|
||||
|
|
Loading…
Reference in New Issue