We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2594602 commit c18f032Copy full SHA for c18f032
3 files changed
.gitignore
@@ -7,3 +7,4 @@ dist
7
*.egg
8
*.egg-info
9
_mailinglist
10
+.tox
Makefile
@@ -5,6 +5,9 @@ all: clean-pyc test
5
test:
6
python setup.py test
+tox-test:
+ PYTHONDONTWRITEBYTECODE= tox
+
11
ext-test:
12
python tests/flaskext_test.py --browse
13
tox.ini
@@ -0,0 +1,5 @@
1
+[tox]
2
+envlist=py25,py26,py27
3
4
+[testenv]
+commands=make test
0 commit comments