Skip to content

Commit

Permalink
Merge pull request #53 from zopefoundation/44-drop-subunit-support
Browse files Browse the repository at this point in the history
Drop all support for 'subunit'.
  • Loading branch information
tseaver committed May 30, 2017
2 parents d38528b + 250c1bd commit ae12cc3
Show file tree
Hide file tree
Showing 13 changed files with 9 additions and 1,399 deletions.
6 changes: 0 additions & 6 deletions .travis.yml
Expand Up @@ -8,12 +8,6 @@ python:
- 3.6
- pypy
- pypy3.3-5.2-alpha1
matrix:
include:
- python: 2.7
env: TOXENV=py27-subunit
- python: pypy
env: TOXENV=pypy-subunit
install:
- pip install tox-travis
script:
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
@@ -1,10 +1,10 @@
zope.testrunner Changelog
*************************

4.6.1 (unreleased)
4.7.0 (unreleased)
==================

- Nothing changed yet.
- Drop all support for ``subunit``.


4.6.0 (2016-12-28)
Expand Down
5 changes: 2 additions & 3 deletions README.rst
Expand Up @@ -146,15 +146,14 @@ Other features
==============

zope.testrunner can profile your tests, measure test coverage,
check for memory leaks, integrate with subunit_, shuffle the
test execution order, and run multiple tests in parallel.
check for memory leaks, shuffle the test execution order, and run
multiple tests in parallel.

For more details please see the `detailed documentation`_.

.. _buildout: http://www.buildout.org/
.. _virtualenv: http://www.virtualenv.org/
.. _zc.recipe.testrunner: http://pypi.python.org/pypi/zc.recipe.testrunner
.. _subunit: http://pypi.python.org/pypi/subunit
.. _detailed documentation: http://docs.zope.org/zope.testrunner/

.. |buildstatus| image:: https://api.travis-ci.org/zopefoundation/zope.testrunner.png?branch=master
Expand Down
3 changes: 0 additions & 3 deletions appveyor.yml
Expand Up @@ -11,15 +11,12 @@ environment:
- python: 35-x64
- python: 36
- python: 36-x64
- { python: 27, SUBUNIT: 1 }
- { python: 27-x64, SUBUNIT: 1 }

install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
- echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 > "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64\vcvars64.bat"
# NB: pip install -e .[test] fails for obscure namespace package reasons
- pip install .[test]
- ps: if($env:SUBUNIT -eq 1) { pip install python-subunit }

build: false

Expand Down
2 changes: 0 additions & 2 deletions setup.py
Expand Up @@ -37,7 +37,6 @@

EXTRAS_REQUIRE = {
'test': TESTS_REQUIRE,
'subunit': TESTS_REQUIRE + ['python-subunit'],
}


Expand Down Expand Up @@ -119,7 +118,6 @@ def run_tests(self):
'testrunner-leaks.txt',
'testrunner-knit.txt',
'testrunner-edge-cases.txt',
'testrunner-subunit.txt',

# The following seems to cause weird unicode in the output: :(
'testrunner-errors.txt',
Expand Down

0 comments on commit ae12cc3

Please sign in to comment.