This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author berker.peksag
Recipients Brainix, berker.peksag, docs@python
Date 2016-11-23.16:37:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479919031.22.0.277734688829.issue28722@psf.upfronthosting.co.za>
In-reply-to
Content
Hi Rajiv, thanks for the report, but this is already possible by default. I will use the factorial example from https://docs.python.org/3.5/library/doctest.html to demonstrate it:

    $ python -m doctest example.py
    $ echo $?
    0

Now change the following line

    >>> [factorial(n) for n in range(6)]

to

    >>> [factorial(n) for n in range(5)]

and run the script again:

    $ python -m doctest example.py
    [...]
    ***Test Failed*** 1 failures.
    $ echo $?
    1
History
Date User Action Args
2016-11-23 16:37:11berker.peksagsetrecipients: + berker.peksag, docs@python, Brainix
2016-11-23 16:37:11berker.peksagsetmessageid: <1479919031.22.0.277734688829.issue28722@psf.upfronthosting.co.za>
2016-11-23 16:37:11berker.peksaglinkissue28722 messages
2016-11-23 16:37:10berker.peksagcreate