Browse Source

Added a tox-test command that runs Flask tests with tox

pull/112/head
Armin Ronacher 14 years ago
parent
commit
c18f032a82
  1. 1
      .gitignore
  2. 3
      Makefile
  3. 5
      tox.ini

1
.gitignore vendored

@ -7,3 +7,4 @@ dist
*.egg
*.egg-info
_mailinglist
.tox

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

5
tox.ini

@ -0,0 +1,5 @@
[tox]
envlist=py25,py26,py27
[testenv]
commands=make test
Loading…
Cancel
Save