Fixed a failing testcase. (Error caused by constant folding of undefined
[jinja2.git] / Makefile
index 85ed64dea6adbc9cb7983e3b5d24ad8e43b67936..60ca1d7a081afce88003b1f47d76fcfcbe5e0c04 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,4 @@
 test:
-       cd tests; nosetests -v
-
-2to3:
-       rm -rf py3k
-       mkdir py3k
-       cp -R jinja2 py3k
-       cp -R tests py3k
-       2to3 jinja2 tests > py3k/convert.patch
-       cd py3k; patch -p0 < convert.patch
+       python setup.py test
 
 .PHONY: test