Browse Source

trying with __test__ to remove tests detected by nose

main
Julien Iguchi-Cartigny 10 years ago
parent
commit
6527f64e5d
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()
for i in range(0, numTests):
case = WSDLToolsAbstractCase()
case.__test__ = true
case.__test__ = True
suite.addTest(unittest.makeSuite(case, 'test_'))
return suite


class WSDLToolsAbstractCase(unittest.TestCase):

__test__ = false
__test__ = False

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


Loading…
Cancel
Save