summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2010-02-06 19:01:58 +0100
committerArmin Ronacher <armin.ronacher@active-4.com>2010-02-06 19:01:58 +0100
commit7fd4ad638cd14cdc20bd6b19ccd8e0ea111b3aef (patch)
tree163ea90dad0796d64e64bf9e54672141e8a76ac3 /Makefile
parent4ac4bdf21ca7d85491b1a17d386c96bd80715592 (diff)
downloadjinja2-7fd4ad638cd14cdc20bd6b19ccd8e0ea111b3aef.tar.gz
Added a testcase for #363. This bug was fixed along the way.
--HG-- branch : trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6cd734a..85ed64d 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,8 @@ test:
rm -rf py3k
mkdir py3k
cp -R jinja2 py3k
- 2to3 jinja2 > py3k/convert.patch
+ cp -R tests py3k
+ 2to3 jinja2 tests > py3k/convert.patch
cd py3k; patch -p0 < convert.patch
.PHONY: test