summaryrefslogtreecommitdiff
path: root/nose/exc.py
blob: 8b780db0d4203c130f942742a34127bab59056a8 (plain)
1
2
3
4
5
6
7
8
9
"""Exceptions for marking tests as skipped or deprecated.

This module exists to provide backwards compatibility with previous
versions of nose where skipped and deprecated tests were core
functionality, rather than being provided by plugins. It may be
removed in a future release.
"""
from nose.plugins.skip import SkipTest
from nose.plugins.deprecated import DeprecatedTest