- Nothing changed yet.
- Make tests compatible with Python 3.13 + add support for that version. (#181)
- Drop support for Python 3.7.
- Remove setuptools fossils.
unittest.TestCase.subTest
support (#91).- remove support for
setup.py
'stest
command. Support for this command has been dropped by modernsetuptools
versions and correspondingly has been removed from mostzopefoundation
packages;zope.testrunner
now follows. setup.py
'sftest
command is now only supported when the usedsetuptools
version still supportstest
.
- Add PEP 420 support (implicit namespaces). (#160)
- Fix XML tests when running in distribution resp. separately. (#163)
- Exit cleanly when using the test runner
--version
argument. (#102) - Add new
--xml <path>
option to write JUnit-like XML reports. Code comes fromcollective.xmltestreport
, but be aware that here--xml
is not a boolean, but expects a path! (#148). - Add support for Python 3.13a3.
- Work around Python 3.12.1+ no longer calling
startTest
for skipped tests (#157).
- Add support for Python 3.12.
- Update code and tests to
python-subunit >= 1.4.3
thus requiring at least this version.
- Add preliminary support for Python 3.12b4. (#149)
- Drop support for Python 2.7, 3.5, 3.6.
- Add support for Python 3.11.
- Inline a small part of
random.Random.shuffle
which was deprecated in Python 3.9 and removed in 3.11 (#119). - Don't trigger post mortem debugger for skipped tests. ( #141).
- Fix: let
--at-level=level
withlevel <= 0
run the tests at all levels (rather than at no level) #138.
- Use
sys._current_frames
(rather thanthreading.enumerate
) as base for new thread detection, fixes #130. - New option
--gc-after-test
. It calls for a garbage collection after each test and can be used to track downResourceWarning``s and cyclic garbage. With ``rv = gc.collect()
,!
is output on verbosity level 1 whenrv
is non zero (i.e. when cyclic structures have been released),[``*rv*
]`` on higher verbosity levels and a detailed cyclic garbage analysis on verbosity level 4+. For details, see #133. - Allow the filename for the logging configuration to be specified
via the envvar
ZOPE_TESTRUNNER_LOG_INI
. If not defined, the configuration continues to be locked for in filelog.ini
of the current working directory. Remember the logging configuration file in envvarZOPE_TESTRUNNER_LOG_INI
to allow spawned child processes to recreate the logging configuration. For details, see #134.
- Improve
--help
documentation for--package-path
option (#121). - Do not disable existing loggers during logsupport initialization (#120).
- Fix tests with testtools >= 2.5.0 (#125).
- Add support for Python 3.10.
- Add support for Python 3.9.
- Fix package init file missing warning (#112).
- Make standard streams provide a buffer attribute on Python 3 when using --buffer or testing under subunit.
- Add support for Python 3.8.
- When a layer is run in a subprocess, read its stderr in a thread to avoid a deadlock if its stderr output (containing failing and erroring test IDs) overflows the capacity of a pipe (#105).
- Recover more gracefully when layer setUp or tearDown fails, producing useful subunit output.
- Prevent a spurious warning from the
--require-unique
option if the--module
option was not used. - Add optional buffering of standard output and standard error during tests,
requested via the
--buffer
option or enabled by default for subunit. - Fix incorrect failure counts in per-layer summary output, broken in 4.0.1.
- Fix test failures and deprecation warnings occurring when using Python 3.8a1. (#89)
- Drop support for Python 3.4.
- Fix
TypeError: a bytes-like object is required, not 'str'
running tests in parallel on Python 3. See issue 80.
- Fix AssertionError in _DummyThread.isAlive on Python 3 (#81).
- Drop support for Python 3.3.
- Add support for Python 3.7.
- Enable test coverage reporting on coveralls.io and in tox.ini.
- Host documentation at https://zopetestrunner.readthedocs.io
- Remove untested support for the
--pychecker
option. See issue 63. - Update the command line interface to use
argparse
instead ofoptparse
. See issue 61. - Use ipdb instead of pdb for post-mortem debugging if available (#10).
- Add a --require-unique option to check for duplicate test IDs. See LP #682771.
- Reintroduce optional support for
subunit
, now with support for both version 1 and version 2 of its protocol. - Handle string in exception values when formatting chained exceptions. (#74)
- Enable
DeprecationWarning
earlier, when discovering test modules. This lets warnings that are raised on import (such as those produced byzope.deprecation.moved
) be reported. See issue 57.
- Automatically enable
DeprecationWarning
when running tests. This is recommended by the Python core developers and matches the behaviour of theunittest
module. This can be overridden with Python command-line options (-W
) or environment variables (PYTHONWARNINGS
). See issue 54.
- Drop all support for
subunit
.
- Make the
subunit
support purely optional: applications which have been getting the dependencies viazope.testrunner
should either addzope.testrunner[subunit]
to theirinstall_requires
or else depend directly onpython-subunit
. - New option
--ignore-new-thread=<regexp>
to suppress "New thread(s)" warnings. - Support Python 3.6.
- Fixed: Using the
-j
option to run tests in multiple processes caused tests that used themultiprocessing
package to hang (because the testrunner replacedsys.stdin
with an unclosable object). - Drop conditional dependency on
unittest2
(redundant after dropping support for Python 2.6).
- Stop tests for all layers when test fails/errors when started with -x/--stop-on-error (#37).
- Drop support for Python 2.6 and 3.2.
- When using
-j
, parallelize all the tests, including the first test layer (#28).
- Work around a bug in PyPy3's curses module (#24).
- Restore support for instance-based test layers that regressed in 4.4.5 (#20).
- Sort related layers close to each other to reduce the number of unnecessary teardowns (fixes #14).
- Run the unit test layer first (fixes LP #497871).
- When looking for the right location of test code, start with longest location paths first. This fixes problems with nested code locations.
- Added support for Python 3.4.
- Drop support for Python 3.1.
- Fix post-mortem debugging when a non-printable exception happens (#8).
- Updated
boostrap.py
to version 2.2. - Fix nondeterministic test failures on Python 3.3
- Tear down layers after
post_mortem
debugging is finished. - Fix tests that write to source directory, it might be read-only.
- Fix tests selection when the negative "!" pattern is used several times (LP #1160965)
- Moved tests into a 'tests' subpackage.
- Made
python -m zope.testrunner
work again. - Support 'skip' feature of unittest2 (which became the new unittest in Python 2.7).
- Better diagnostics when communication with subprocess fails (#5).
- Do not break subprocess execution when the test suite changes the working directory (#6).
- Count test module import errors as errors (LP #1026576).
- Running layers in sub-processes did not use to work when run via
python setup.py ftest
since it tried to run setup.py with all the command line options. It now detectssetup.py
runs and we run the test runner directly.
- Fix
SkipLayers
class in cases where the distribution specifies atest_suite
value.
- Fixed a bug in the ftest command and added a test.
- Fixed a trivial test failure with Python 3 of the previous release.
- Expose ftest distutils command via an entry point.
- Added tests for
zope.testrunner.eggsupport
.
- Dropped use of 2to3, rewrote source code to be compatible with all Python versions. Introduced a dependency on six.
- 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).
- Replaced deprecated
zope.interface.implements
usage with equivalentzope.interface.implementer
decorator. - Dropped support for Python 2.4 and 2.5.
- Made StartUpFailure compatible with unittest.TextTestRunner() (LP #1118344).
- Work around sporadic timing-related issues in the subprocess buffering tests. Thanks to Jonathan Ballet for the patch!
- Added back support for Python <= 2.6 which was broken in 4.0.2.
- 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.
- 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.
- Show more information about layers whose setup fails (LP #638153).
- Update fix for LP #221151 to a spelling 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.
- Package as a zipfile to work around Python 2.4 distutils bug (no
feature changes or bugfixes in
zope.testrunner
itself).
- 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 thefoo.bar
egg used for testing into a directory. - LP #580083: fix the
bin/test
script to run only tests fromzope.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 its tearDown called either.
- 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.
- Initial release of the testrunner from zope.testrunner as its own module. (Previously it was part of zope.testing.)