I try to run my test without any messages displaying from my main program. I only want verbose messages from nosetests to display.
For example:
nosetests -v --nologcapture
All of my printout messages from my main program will be gone.
However, the graph that I call in my main program (plt.show()
from matplotlib) still shows up.
How do I run the tests without matplotlib's graph showing up?