blob: 8f7cd9202b87b641b2c1df0f00c475a6ba0660c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
try:
import nose
except ImportError:
raise ImportError("The nose testing framework is required to run " \
"Python-Markdown tests. Run `easy_install nose` " \
"to install the latest version.")
from .plugins import HtmlOutput, Markdown
def run():
nose.main(addplugins=[HtmlOutput(), Markdown()])
|