[issue19647] unittest.TestSuite consumes tests

2013-11-19 Thread Stefan Holek
Stefan Holek added the comment: I have some complex test fixtures that I have written tests for, and one of them started to fail because it assumed that the suite would still be valid after having run. That said, I was able to work around the issue and if you don't care neither do I. ;-) ---

[issue19647] unittest.TestSuite consumes tests

2013-11-19 Thread Michael Foord
Michael Foord added the comment: The new behaviour is intentional, glad you've managed to work around it. -- resolution: -> invalid stage: -> committed/rejected status: open -> closed ___ Python tracker _

[issue19647] unittest.TestSuite consumes tests

2013-11-18 Thread R. David Murray
R. David Murray added the comment: This is presumably a consequence of issue 11798. How did you run into it in actual code? -- nosy: +r.david.murray ___ Python tracker ___

[issue19647] unittest.TestSuite consumes tests

2013-11-18 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- nosy: +michael.foord ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue19647] unittest.TestSuite consumes tests

2013-11-18 Thread Stefan Holek
New submission from Stefan Holek: This test passed in Python <= 3.3 but fails in 3.4: def testTestSuiteConsumesTest(self): class MyTestCase(unittest.TestCase): def testMethod(self): pass test = MyTestCase('testMethod') suite = unittest.Test