summaryrefslogtreecommitdiff
path: root/run-tests.py
diff options
context:
space:
mode:
authorArmin Ronacher <armin.ronacher@active-4.com>2013-05-20 11:51:37 +0100
committerArmin Ronacher <armin.ronacher@active-4.com>2013-05-20 11:51:37 +0100
commit54c9f93e1f6d2bb564a3ed0cf38189effb4e2698 (patch)
tree6fe24070c54c24e33f44bd61a69b05153d729fc2 /run-tests.py
parent3b76f0441d3ea1d84a1f09ad8974ab180703ec4d (diff)
downloadjinja2-54c9f93e1f6d2bb564a3ed0cf38189effb4e2698.tar.gz
Added nicer test finder from Flask
Diffstat (limited to 'run-tests.py')
-rw-r--r--run-tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/run-tests.py b/run-tests.py
new file mode 100644
index 0000000..f8d5024
--- /dev/null
+++ b/run-tests.py
@@ -0,0 +1,5 @@
+#!/usr/bin/env python
+import sys, os
+sys.path.insert(0, os.path.abspath(os.path.dirname(__file__)))
+from jinja2.testsuite import main
+main()