diff test.py @ 76:37307caccf54

add a script to run tests with nose plugins loaded
author Idan Kamara <idankk86@gmail.com>
date Sat, 15 Oct 2011 20:09:59 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test.py	Sat Oct 15 20:09:59 2011 +0200
@@ -0,0 +1,7 @@
+#!/usr/bin/env python
+
+import nose
+from tests import with_hg
+
+if __name__ == '__main__':
+    nose.main(addplugins=[with_hg.WithHgPlugin()])