[Checkins] SVN: zope.testrunner/trunk/ Moved to github

Marius Gedminas cvs-admin at zope.org
Mon Feb 11 20:02:44 UTC 2013


Log message for revision 129304:
  Moved to github

Changed:
  D   zope.testrunner/trunk/CHANGES.txt
  D   zope.testrunner/trunk/COPYRIGHT.txt
  D   zope.testrunner/trunk/DEVELOPING.txt
  D   zope.testrunner/trunk/LICENSE.txt
  D   zope.testrunner/trunk/MANIFEST.in
  A   zope.testrunner/trunk/MOVED_TO_GITHUB
  D   zope.testrunner/trunk/README.txt
  D   zope.testrunner/trunk/bootstrap.py
  D   zope.testrunner/trunk/buildout.cfg
  D   zope.testrunner/trunk/setup.cfg
  D   zope.testrunner/trunk/setup.py
  D   zope.testrunner/trunk/src/
  D   zope.testrunner/trunk/tox.ini

-=-
Deleted: zope.testrunner/trunk/CHANGES.txt
===================================================================
--- zope.testrunner/trunk/CHANGES.txt	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/CHANGES.txt	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,134 +0,0 @@
-zope.testrunner Changelog
-*************************
-
-4.1.2 (unreleased)
-==================
-
-- Nothing changed yet.
-
-
-4.1.1 (2013-02-08)
-==================
-
-- Dropped use of zope.fixers (LP: #1118877).
-
-- Fixed tox test error reporting; fixed tests on Pythons 2.6, 3.1, 3.2, 3.3 and
-  PyPy 1.9.
-
-- Fix --shuffle ordering on Python 3.2 to be the same as it was on older Python
-  versions.
-
-- Fix --shuffle nondeterminism when multiple test layers are present.
-  Note: this will likely change the order of tests for the same --shuffle-seed.
-
-- New option: --profile-directory.  Use it in the test suite so that tests
-  executed by detox in parallel don't conflict.
-
-- Use a temporary coverage directory in the test suite so that tests
-  executed by detox in parallel don't conflict.
-
-- Fix --post-mortem (aka -D, --pdb) when a test module cannot be imported
-  or is invalid (LP #1119363).
-
-
-4.1.0 (2013-02-07)
-==================
-
-- Replaced deprecated ``zope.interface.implements`` usage with equivalent
-  ``zope.interface.implementer`` decorator.
-
-- Dropped support for Python 2.4 and 2.5.
-
-- Made StartUpFailure compatible with unittest.TextTestRunner() (LP #1118344).
-
-
-4.0.4 (2011-10-25)
-==================
-
-- Work around sporadic timing-related issues in the subprocess buffering
-  tests.  Thanks to Jonathan Ballet for the patch!
-
-
-4.0.3 (2011-03-17)
-==================
-
-- Added back support for Python <= 2.6 which was broken in 4.0.2.
-
-
-4.0.2 (2011-03-16)
-==================
-
-- Added back Python 3 support which was broken in 4.0.1.
-
-- Fixed `Unexpected success`_ support by implementing the whole concept.
-
-- Added support for the new __pycache__ directories in Python 3.2.
-
-
-4.0.1 (2011-02-21)
-==================
-
-- LP #719369: An `Unexpected success`_ (concept introduced in Python 2.7) is
-  no longer handled as success but as failure. This is a workaround. The
-  whole unexpected success concept might be implemented later.
-
-.. _`Unexpected success`: http://www.voidspace.org.uk/python/articles/unittest2.shtml#more-skipping
-
-
-4.0.0 (2010-10-19)
-==================
-
-- Show more information about layers whose setup fails (LP #638153).
-
-
-4.0.0b5 (2010-07-20)
-====================
-
-- Update fix for LP #221151 to a spelliing compatible with Python 2.4.
-
-- Timestamps are now always included in subunit output (r114849).
-
-- LP #591309: fix a crash when subunit reports test failures containing
-  UTF8-encoded data.
-
-
-4.0.0b4 (2010-06-23)
-====================
-
-- Package as a zipfile to work around Python 2.4 distutils bug (no
-  feature changes or bugfixes in ``zope.testrunner`` itself).
-
-
-4.0.0b3 (2010-06-16)
-====================
-
-- LP #221151: keep ``unittest.TestCase.shortDescription`` happy by supplying
-  a ``_testMethodDoc`` attribute.
-
-- LP #595052: keep the distribution installable under Python 2.4:  its
-  distutils appears to munge the empty ``__init__.py`` file in the
-  ``foo.bar`` egg used for testing into a directory.
-
-- LP #580083: fix the ``bin/test`` script to run only tests from
-  ``zope.testrunner``.
-
-- LP #579019: When layers were run in parallel, their tearDown was
-  not called. Additionally, the first layer which was run in the main
-  thread did not have it's tearDown called either.
-
-
-4.0.0b2 (2010-05-03)
-====================
-
-- Having 'sampletests' in the MANIFEST.in gave warnings, but doesn't actually
-  seem to include any more files, so I removed it.
-
-- Moved zope.testing.exceptions to zope.testrunner.exceptions. Now
-  zope.testrunner no longer requires zope.testing except for when running
-  its own tests.
-
-
-4.0.0b1 (2010-04-29)
-====================
-
-- Initial release of the testrunner from zope.testrunner as it's own module.

Deleted: zope.testrunner/trunk/COPYRIGHT.txt
===================================================================
--- zope.testrunner/trunk/COPYRIGHT.txt	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/COPYRIGHT.txt	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1 +0,0 @@
-Zope Foundation and Contributors
\ No newline at end of file

Deleted: zope.testrunner/trunk/DEVELOPING.txt
===================================================================
--- zope.testrunner/trunk/DEVELOPING.txt	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/DEVELOPING.txt	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,56 +0,0 @@
-**************************
-developing zope.testrunner
-**************************
-
-Zope testrunner needs itself to run it's own tests. There are two ways to 
-do that.
-
-Note: At the moment of writing buildout does not support Python 3, and
-therefore you must use the latter way of running the tests in Python 3.
-Also, the zc.recipe.testrunner doesn't yet support zope.testrunner, so 
-actually, the first way doesn't work unless you manually edit bin/test.
-
-
-Using zc.buildout
------------------
-
-The standard way to set up a testrunner to test zope.testrunner with,
-is to use buildout::
-
-    # python bootstrap.py
-    # bin/buildout
-
-You can now run the tests:
-    
-    # bin/test
-    Running zope.testrunner.layer.UnitTests tests:
-      Set up zope.testrunner.layer.UnitTests in 0.000 seconds.
-      Ran 27 tests with 0 failures and 0 errors in 17.384 seconds.
-    Tearing down left over layers:
-      Tear down zope.testrunner.layer.UnitTests in 0.000 seconds.    
-    
-Using setup.py
---------------
-
-You may run the tests without buildout as well, as the setup.py has
-a custom test command that will run the tests:
-
-    # python setup.py test
-    running test
-    running egg_info
-    writing requirements to src/zope.testrunner.egg-info/requires.txt
-    writing src/zope.testrunner.egg-info/PKG-INFO
-    writing namespace_packages to src/zope.testrunner.egg-info/namespace_packages.txt
-    writing top-level names to src/zope.testrunner.egg-info/top_level.txt
-    writing dependency_links to src/zope.testrunner.egg-info/dependency_links.txt
-    writing entry points to src/zope.testrunner.egg-info/entry_points.txt
-    reading manifest template 'MANIFEST.in'
-    warning: no files found matching 'sampletests' under directory 'src'
-    writing manifest file 'src/zope.testrunner.egg-info/SOURCES.txt'
-    running build_ext
-    Running zope.testrunner.layer.UnitTests tests:
-      Set up zope.testrunner.layer.UnitTests in 0.000 seconds.
-      Ran 27 tests with 0 failures and 0 errors in 17.600 seconds.
-    Tearing down left over layers:
-      Tear down zope.testrunner.layer.UnitTests in 0.000 seconds.
-

Deleted: zope.testrunner/trunk/LICENSE.txt
===================================================================
--- zope.testrunner/trunk/LICENSE.txt	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/LICENSE.txt	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,44 +0,0 @@
-Zope Public License (ZPL) Version 2.1
-
-A copyright notice accompanies this license document that identifies the
-copyright holders.
-
-This license has been certified as open source. It has also been designated as
-GPL compatible by the Free Software Foundation (FSF).
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-1. Redistributions in source code must retain the accompanying copyright
-notice, this list of conditions, and the following disclaimer.
-
-2. Redistributions in binary form must reproduce the accompanying copyright
-notice, this list of conditions, and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-
-3. Names of the copyright holders must not be used to endorse or promote
-products derived from this software without prior written permission from the
-copyright holders.
-
-4. The right to distribute this software or to use it for any purpose does not
-give you the right to use Servicemarks (sm) or Trademarks (tm) of the
-copyright
-holders. Use of them is covered by separate agreement with the copyright
-holders.
-
-5. If any files are modified, you must cause the modified files to carry
-prominent notices stating that you changed the files and the date of any
-change.
-
-Disclaimer
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY EXPRESSED
-OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
-OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
-EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Deleted: zope.testrunner/trunk/MANIFEST.in
===================================================================
--- zope.testrunner/trunk/MANIFEST.in	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/MANIFEST.in	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,2 +0,0 @@
-include *.txt *.py buildout.cfg tox.ini
-recursive-include src *.py *.txt *.test

Added: zope.testrunner/trunk/MOVED_TO_GITHUB
===================================================================
--- zope.testrunner/trunk/MOVED_TO_GITHUB	                        (rev 0)
+++ zope.testrunner/trunk/MOVED_TO_GITHUB	2013-02-11 20:02:43 UTC (rev 129304)
@@ -0,0 +1 @@
+See https://github.com/zopefoundation/zope.testrunner

Deleted: zope.testrunner/trunk/README.txt
===================================================================
--- zope.testrunner/trunk/README.txt	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/README.txt	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,16 +0,0 @@
-***************
-zope.testrunner
-***************
-
-.. contents::
-
-This package provides a flexible test runner with layer support.
-
-
-Getting started
-***************
-
-zope.testrunner uses buildout.  To start, run ``python bootstrap.py``.  It will
-create a number of directories and the ``bin/buildout`` script.  Next, run
-``bin/buildout``.  It will create a test script for you.  Now, run ``bin/test``
-to run the zope.testrunner test suite.

Deleted: zope.testrunner/trunk/bootstrap.py
===================================================================
--- zope.testrunner/trunk/bootstrap.py	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/bootstrap.py	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,116 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2006 Zope Foundation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-"""Bootstrap a buildout-based project
-
-Simply run this script in a directory containing a buildout.cfg.
-The script accepts buildout command-line options, so you can
-use the -c option to specify an alternate configuration file.
-"""
-
-import os, shutil, sys, tempfile, urllib2
-from optparse import OptionParser
-
-tmpeggs = tempfile.mkdtemp()
-
-is_jython = sys.platform.startswith('java')
-
-# parsing arguments
-parser = OptionParser()
-parser.add_option("-v", "--version", dest="version",
-                          help="use a specific zc.buildout version")
-parser.add_option("-d", "--distribute",
-                   action="store_true", dest="distribute", default=False,
-                   help="Use Disribute rather than Setuptools.")
-
-parser.add_option("-c", None, action="store", dest="config_file",
-                   help=("Specify the path to the buildout configuration "
-                         "file to be used."))
-
-options, args = parser.parse_args()
-
-# if -c was provided, we push it back into args for buildout' main function
-if options.config_file is not None:
-    args += ['-c', options.config_file]
-
-if options.version is not None:
-    VERSION = '==%s' % options.version
-else:
-    VERSION = ''
-
-USE_DISTRIBUTE = options.distribute
-args = args + ['bootstrap']
-
-try:
-    import pkg_resources
-    import setuptools
-    if not hasattr(pkg_resources, '_distribute'):
-        raise ImportError
-except ImportError:
-    ez = {}
-    if USE_DISTRIBUTE:
-        exec urllib2.urlopen('http://python-distribute.org/distribute_setup.py'
-                         ).read() in ez
-        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0, no_fake=True)
-    else:
-        exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
-                             ).read() in ez
-        ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
-
-    reload(sys.modules['pkg_resources'])
-    import pkg_resources
-
-if sys.platform == 'win32':
-    def quote(c):
-        if ' ' in c:
-            return '"%s"' % c # work around spawn lamosity on windows
-        else:
-            return c
-else:
-    def quote (c):
-        return c
-
-cmd = 'from setuptools.command.easy_install import main; main()'
-ws  = pkg_resources.working_set
-
-if USE_DISTRIBUTE:
-    requirement = 'distribute'
-else:
-    requirement = 'setuptools'
-
-if is_jython:
-    import subprocess
-
-    assert subprocess.Popen([sys.executable] + ['-c', quote(cmd), '-mqNxd',
-           quote(tmpeggs), 'zc.buildout' + VERSION],
-           env=dict(os.environ,
-               PYTHONPATH=
-               ws.find(pkg_resources.Requirement.parse(requirement)).location
-               ),
-           ).wait() == 0
-
-else:
-    assert os.spawnle(
-        os.P_WAIT, sys.executable, quote (sys.executable),
-        '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout' + VERSION,
-        dict(os.environ,
-            PYTHONPATH=
-            ws.find(pkg_resources.Requirement.parse(requirement)).location
-            ),
-        ) == 0
-
-ws.add_entry(tmpeggs)
-ws.require('zc.buildout' + VERSION)
-import zc.buildout.buildout
-zc.buildout.buildout.main(args)
-shutil.rmtree(tmpeggs)

Deleted: zope.testrunner/trunk/buildout.cfg
===================================================================
--- zope.testrunner/trunk/buildout.cfg	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/buildout.cfg	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,13 +0,0 @@
-[buildout]
-develop = .
-parts = test python
-
-[test]
-recipe = zc.recipe.testrunner
-eggs = zope.testrunner[test]
-
-[python]
-recipe = zc.recipe.egg
-eggs = ${test:eggs}
-scripts =
-interpreter = python

Deleted: zope.testrunner/trunk/setup.cfg
===================================================================
--- zope.testrunner/trunk/setup.cfg	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/setup.cfg	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,2 +0,0 @@
-[sdist]
-formats = zip

Deleted: zope.testrunner/trunk/setup.py
===================================================================
--- zope.testrunner/trunk/setup.py	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/setup.py	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,199 +0,0 @@
-##############################################################################
-#
-# Copyright (c) 2004 Zope Foundation and Contributors.
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-##############################################################################
-# This package is developed by the Zope Toolkit project, documented here:
-# http://docs.zope.org/zopetoolkit
-# When developing and releasing this package, please follow the documented
-# Zope Toolkit policies as described by this documentation.
-##############################################################################
-"""Setup for zope.testrunner package
-"""
-
-import os
-import sys
-from setuptools import setup
-from setuptools.command.test import test
-
-if sys.version_info < (2,6) or sys.version_info[:2] == (3,0):
-    raise ValueError("zope.testrunner requires Python 2.6 or higher, "
-                     "or 3.1 or higher.")
-
-
-
-if sys.version_info >= (3,):
-    extra = dict(use_2to3 = True,
-                 convert_2to3_doctests = [
-                     'src/zope/testrunner/testrunner-arguments.txt',
-                     'src/zope/testrunner/testrunner-coverage-win32.txt',
-                     'src/zope/testrunner/testrunner-coverage.txt',
-                     'src/zope/testrunner/testrunner-debugging-layer-setup.test',
-                     'src/zope/testrunner/testrunner-debugging-import-failure.test',
-                     'src/zope/testrunner/testrunner-debugging.txt',
-                     'src/zope/testrunner/testrunner-discovery',
-                     'src/zope/testrunner/testrunner-edge-cases.txt',
-                     'src/zope/testrunner/testrunner-errors.txt',
-                     'src/zope/testrunner/testrunner-gc.txt',
-                     'src/zope/testrunner/testrunner-knit.txt',
-                     'src/zope/testrunner/testrunner-layers-api.txt',
-                     'src/zope/testrunner/testrunner-layers-buff.txt',
-                     'src/zope/testrunner/testrunner-layers-ntd.txt',
-                     'src/zope/testrunner/testrunner-layers.txt',
-                     'src/zope/testrunner/testrunner-leaks-err.txt',
-                     'src/zope/testrunner/testrunner-leaks.txt',
-                     'src/zope/testrunner/testrunner-profiling-cprofiler.txt',
-                     'src/zope/testrunner/testrunner-profiling.txt',
-                     'src/zope/testrunner/testrunner-progress.txt',
-                     'src/zope/testrunner/testrunner-repeat.txt',
-                     'src/zope/testrunner/testrunner-simple.txt',
-                     'src/zope/testrunner/testrunner-tb-format.txt',
-                     'src/zope/testrunner/testrunner-test-selection.txt',
-                     'src/zope/testrunner/testrunner-verbose.txt',
-                     'src/zope/testrunner/testrunner-wo-source.txt',
-                     'src/zope/testrunner/testrunner.txt',
-                     'src/zope/testrunner/testrunner-ex/sampletests.txt',
-                     'src/zope/testrunner/testrunner-ex/sampletestsl.txt',
-                     'src/zope/testrunner/testrunner-ex/unicode.txt',
-                     ],
-
-                 # XXX:  python-subunit is not yet ported to Python3.
-                 tests_require = ['zope.testing'],
-                 extras_require = {'test': ['zope.testing']},
-                 )
-else:
-    extra = dict(tests_require = ['zope.testing',
-                                  'python-subunit',
-                                 ],
-                 extras_require = {'test': ['zope.testing',
-                                            'python-subunit',
-                                           ]},
-                )
-
-
-
-class custom_test(test):
-    # The zope.testrunner tests MUST be run using it's own testrunner. This is
-    # because it's subprocess testing will call the script it was run with. We
-    # therefore create a script to run the testrunner, and call that.
-    def run(self):
-        if self.distribution.install_requires:
-            self.distribution.fetch_build_eggs(self.distribution.install_requires)
-        if self.distribution.tests_require:
-            self.distribution.fetch_build_eggs(self.distribution.tests_require)
-        self.with_project_on_sys_path(self.run_tests)
-
-    def run_tests(self):
-        template = """
-import sys
-sys.path = %s
-
-import os
-os.chdir('%s')
-
-import zope.testrunner
-if __name__ == '__main__':
-    zope.testrunner.run([
-        '--test-path', '%s', '-c'
-        ])
-        """
-        import tempfile
-        fd, filename = tempfile.mkstemp(prefix='temprunner', text=True)
-        scriptfile = open(filename, 'w')
-        script = template % (sys.path, os.path.abspath(os.curdir), os.path.abspath('src'))
-        scriptfile.write(script)
-        scriptfile.close()
-
-        import subprocess
-        process = subprocess.Popen([sys.executable, filename])
-        rc = process.wait()
-        os.unlink(filename)
-        sys.exit(rc)
-
-chapters = '\n'.join([
-    open(os.path.join('src', 'zope', 'testrunner', name)).read()
-    for name in (
-        'testrunner.txt',
-        'testrunner-simple.txt',
-        'testrunner-layers-api.txt',
-        'testrunner-layers.txt',
-        'testrunner-arguments.txt',
-        'testrunner-verbose.txt',
-        'testrunner-test-selection.txt',
-        'testrunner-progress.txt',
-        'testrunner-debugging.txt',
-        'testrunner-layers-ntd.txt',
-        'testrunner-coverage.txt',
-        'testrunner-profiling.txt',
-        'testrunner-wo-source.txt',
-        'testrunner-repeat.txt',
-        'testrunner-gc.txt',
-        'testrunner-leaks.txt',
-        'testrunner-knit.txt',
-        'testrunner-edge-cases.txt',
-
-        # The following seems to cause weird unicode in the output: :(
-             'testrunner-errors.txt',
-
-    )])
-
-long_description=(
-    open('README.txt').read()
-    + '\n' +
-    open('CHANGES.txt').read()
-    + '\n' +
-    'Detailed Documentation\n'
-    '**********************\n'
-    + '\n' + chapters
-    )
-
-setup(
-    name='zope.testrunner',
-    version='4.1.2.dev0',
-    url='http://pypi.python.org/pypi/zope.testrunner',
-    license='ZPL 2.1',
-    description='Zope testrunner script.',
-    long_description=long_description,
-    author='Zope Foundation and Contributors',
-    author_email='zope-dev at zope.org',
-    packages=["zope", "zope.testrunner", "zope.testrunner.testrunner-ex"],
-    package_dir = {'': 'src'},
-    classifiers=[
-        "Development Status :: 5 - Production/Stable",
-        "Environment :: Console",
-        "Framework :: Zope3",
-        "Intended Audience :: Developers",
-        "License :: OSI Approved :: Zope Public License",
-        "Operating System :: OS Independent",
-        "Programming Language :: Python :: 2.6",
-        "Programming Language :: Python :: 2.7",
-        "Programming Language :: Python :: 3",
-        "Programming Language :: Python :: 3.1",
-        "Programming Language :: Python :: 3.2",
-        "Programming Language :: Python :: 3.3",
-        'Programming Language :: Python :: Implementation :: CPython',
-        'Programming Language :: Python :: Implementation :: PyPy',
-        "Topic :: Software Development :: Libraries :: Python Modules",
-        "Topic :: Software Development :: Testing",
-        ],
-    namespace_packages=['zope',],
-    install_requires = ['setuptools',
-                        'zope.exceptions',
-                        'zope.interface',
-                       ],
-    entry_points = {
-        'console_scripts':
-            ['zope-testrunner = zope.testrunner:run',]},
-    include_package_data = True,
-    zip_safe = False,
-    cmdclass = {'test': custom_test},
-    **extra
-)

Deleted: zope.testrunner/trunk/tox.ini
===================================================================
--- zope.testrunner/trunk/tox.ini	2013-02-11 19:22:57 UTC (rev 129303)
+++ zope.testrunner/trunk/tox.ini	2013-02-11 20:02:43 UTC (rev 129304)
@@ -1,19 +0,0 @@
-[tox]
-envlist =
-    py26,py27,py31,py32,py33,pypy
-
-[testenv]
-deps =
-    zope.testing
-commands =
-    python setup.py test -q
-
-[testenv:py26]
-deps =
-    {[testenv]deps}
-    python-subunit
-
-[testenv:py27]
-deps =
-    {[testenv]deps}
-    python-subunit



More information about the checkins mailing list