nose2.compatΒΆ

unittest/unittest2 compatibilty wrapper.

Anything internal to nose2 must import unittest from here, to be sure that it is using unittest2 when on older pythons.

Yes:

from nose2.compat import unittest

NO:

import unittest

NO:

import unittest2

Previous topic

nose2.main

Next topic

nose2.exceptions

This Page