summaryrefslogtreecommitdiff
path: root/docutils/test/test_parsers/test_recommonmark/__init__.py
blob: 7dc6fa9e3726284ebb3dae0c56687eb3dd4bd683 (plain)
1
2
3
4
5
6
7
"""Optional tests with 3rd party CommonMark parser"""

import unittest
try:
    import docutils.parsers.recommonmark_wrapper  # noqa: F401
except ImportError as err:
    raise unittest.SkipTest(err)