Browse Source

Revert "trying with __test__ to remove tests detected by nose"

This reverts commit 6527f64e5d.
main
Julien Iguchi-Cartigny 10 years ago
parent
commit
e9c7a51252
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      tests/test_wsdl.py

+ 2
- 2
tests/test_wsdl.py View File

@@ -27,14 +27,14 @@ def makeTestSuite(section='services_by_file'):
suite = unittest.TestSuite() suite = unittest.TestSuite()
for i in range(0, numTests): for i in range(0, numTests):
case = WSDLToolsAbstractCase() case = WSDLToolsAbstractCase()
case.__test__ = True
case.__test__ = true
suite.addTest(unittest.makeSuite(case, 'test_')) suite.addTest(unittest.makeSuite(case, 'test_'))
return suite return suite




class WSDLToolsAbstractCase(unittest.TestCase): class WSDLToolsAbstractCase(unittest.TestCase):


__test__ = False
__test__ = false


def __init__(self, methodName='runTest'): def __init__(self, methodName='runTest'):
unittest.TestCase.__init__(self, methodName) unittest.TestCase.__init__(self, methodName)


Loading…
Cancel
Save