Re: Re-running unittest

2007-07-23 Thread Gabriel Genellina
At 23/07/2007 09:59, Israel Fernández Cabrera [EMAIL PROTECTED] wrote: (Please keep posting on the list - many other people may have better ideas on this) Well... probably my English and my intentions to not ti write to much made my explanation unclear. The code I wrote was just to

Re: Re-running unittest

2007-07-23 Thread Israel Fernández Cabrera
Hi Gabriel Perhaps the best option is to run the tests in another process. Use any of the available IPC mechanisms to gather the test results. This has the added advantage of isolating the tested code from your GUI testing framework; all requested resources are released to the OS; the tests

Re-running unittest

2007-07-22 Thread Israel Fernández Cabrera
Hi I'm writing some code that automatically execute some registered unit test in a way to automate the process. A sample code follows to illustrate what I'm doing: code requires=save as import_tests.py class PruebasDePrueba(unittest.TestCase): def testUnTest(self): a = 2 b = 1

Re: Re-running unittest

2007-07-22 Thread Gabriel Genellina
En Sun, 22 Jul 2007 17:43:03 -0300, Israel Fernández Cabrera [EMAIL PROTECTED] escribió: I'm writing some code that automatically execute some registered unit test in a way to automate the process. A sample code follows to illustrate what I'm doing: code requires=save as import_tests.py