aboutsummaryrefslogtreecommitdiffstats
path: root/run-tests.py
diff options
context:
space:
mode:
authorWaylan Limberg <waylan@gmail.com>2010-02-13 22:58:46 -0500
committerWaylan Limberg <waylan@gmail.com>2010-02-13 22:58:46 -0500
commit67ad9f66a00bdea21602428f748dfbb65220e67c (patch)
treeae8325a479ddbfc3e4c5ad8b5c279d411f394259 /run-tests.py
parent42b95d7ef8b1dd032c3f5cee0013f7bbe78df447 (diff)
downloadmarkdown-67ad9f66a00bdea21602428f748dfbb65220e67c.tar.gz
markdown-67ad9f66a00bdea21602428f748dfbb65220e67c.tar.bz2
markdown-67ad9f66a00bdea21602428f748dfbb65220e67c.zip
Added run-tests.py script and added a helpful error message if nose is not installed. Note the run-tests script will be used by simply running 'nosetests' from the commandline, so the hack in 'tests/__init__.py' has been removed.
Diffstat (limited to 'run-tests.py')
-rwxr-xr-xrun-tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/run-tests.py b/run-tests.py
new file mode 100755
index 0000000..e30c7b3
--- /dev/null
+++ b/run-tests.py
@@ -0,0 +1,5 @@
+#!/usr/bin/env python
+
+import tests
+
+tests.run()