Re: How to see intermediate fail results from unittest as tests are running?

2010-08-25 Thread Jean-Paul Calderone
On Aug 18, 9:20 pm, Margie Roginski margierogin...@gmail.com wrote: Hi, I am using unittest in a fairly basic way, where I have a single file that simply defines a class that inherits from unittest.TestCase and then within that class I have a bunch of methods that start with test.  Within

Re: How to see intermediate fail results from unittest as tests are running?

2010-08-19 Thread Peter Otten
Margie Roginski wrote: I am using unittest in a fairly basic way, where I have a single file that simply defines a class that inherits from unittest.TestCase and then within that class I have a bunch of methods that start with test. Within that file, at the bottom I have: if __name__ ==

Re: How to see intermediate fail results from unittest as tests are running?

2010-08-19 Thread Margie Roginski
On Aug 19, 12:41 am, Peter Otten __pete...@web.de wrote: Margie Roginski wrote: I am using unittest in a fairly basic way, where I have a single file that simply defines a class that inherits from unittest.TestCase and then within that class I have a bunch of methods that start with test.

How to see intermediate fail results from unittest as tests are running?

2010-08-18 Thread Margie Roginski
Hi, I am using unittest in a fairly basic way, where I have a single file that simply defines a class that inherits from unittest.TestCase and then within that class I have a bunch of methods that start with test. Within that file, at the bottom I have: if __name__ == __main__: