Commit 57c48b37 authored by Stefan H. Holek's avatar Stefan H. Holek

Don't run testWebserver.py as part of the Zope2 test suite.

parent 314b8a17
"""test runner that works with zope.testing.testrunner"""
import unittest
import os, sys
"""Test runner that works with zope.testing.testrunner"""
import os, sys
import unittest
import os
import Testing.ZopeTestCase
suite = unittest.TestSuite()
names = os.listdir(os.path.dirname(__file__))
tests = [x[:-3] for x in names \
if x.startswith('test') and x.endswith('.py') \
and not x == 'tests.py']
tests = [x[:-3] for x in names
if x.startswith('test') and x.endswith('.py')
and x != 'tests.py'
# Don't run this module as part of the Zope2 suite
and x != 'testWebserver.py']
import Testing.ZopeTestCase
for test in tests:
m = __import__("Testing.ZopeTestCase.%s" %test)
m = __import__('Testing.ZopeTestCase.%s' % test)
m = getattr(Testing.ZopeTestCase, test)
if hasattr(m, 'test_suite'):
suite.addTest(m.test_suite())
......
"""test runner that works with zope.testing.testrunner"""
import unittest
import os, sys
"""Test runner that works with zope.testing.testrunner"""
import os, sys
import unittest
import os
import Testing.ZopeTestCase.zopedoctest
suite = unittest.TestSuite()
names = os.listdir(os.path.dirname(__file__))
tests = [x[:-3] for x in names \
if x.startswith('test') and x.endswith('.py') \
and not x == 'tests.py']
tests = [x[:-3] for x in names
if x.startswith('test') and x.endswith('.py')
and x != 'tests.py']
import Testing.ZopeTestCase.zopedoctest
for test in tests:
m = __import__("Testing.ZopeTestCase.zopedoctest.%s" %test)
m = __import__('Testing.ZopeTestCase.zopedoctest.%s' % test)
m = getattr(Testing.ZopeTestCase.zopedoctest, test)
if hasattr(m, 'test_suite'):
suite.addTest(m.test_suite())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment