When I type
$ nosetests -v mytest.py
all my print outputs are captured when all tests pass. I want to see print outputs even everything pas
Either:
$ nosetests --nocapture mytest.py
Or:
$ NOSE_NOCAPTURE=1 nosetests mytests.py
(it can also be specified in the nose.cfg file, see nosetests --help)
nose.cfg
nosetests --help