Simple example of doctest with an exception: ``` ''' >>> raise Exception() # doctest: +ELLIPSIS, +IGNORE_EXCEPTION_DETAIL Traceback (most recent call last): Exception ''' ``` Nose without xtraceback pass this test. With xtraceback - fail.
Simple example of doctest with an exception:
Nose without xtraceback pass this test. With xtraceback - fail.