__init__.py 404 B

123456789101112131415
  1. from nose.core import collector, main, run, run_exit, runmodule
  2. # backwards compatibility
  3. from nose.exc import SkipTest, DeprecatedTest
  4. from nose.tools import with_setup
  5. __author__ = 'Jason Pellerin'
  6. __versioninfo__ = (1, 3, 4)
  7. __version__ = '.'.join(map(str, __versioninfo__))
  8. __all__ = [
  9. 'main', 'run', 'run_exit', 'runmodule', 'with_setup',
  10. 'SkipTest', 'DeprecatedTest', 'collector'
  11. ]