After running into trouble trying to set the python unittest discover pathway for my project, I'm trying again with nose. I am trying to print out verbose output which is supposedly captured by default by Nose (according to http://nose.readthedocs.org/en/latest/plugins/capture.html)
I have:
arg =sys.argv[:1]
arg.append('--verbosity=2')
out = nose.run(module=ft1.test_y1, argv=arg)
but 'out' is a boolean
How can I get it working?