diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-14 10:21:16 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-01-14 10:21:16 -0500 |
commit | 549bad2d676f03c18cfb3b8ed5392bab5eae2ad3 (patch) | |
tree | 919b13a99dc20ba31cbc9abc02cbd587c0f66091 | |
parent | e5c5b0eda9c000987ecafaa914ff1d0513b342ac (diff) | |
download | python-coveragepy-git-549bad2d676f03c18cfb3b8ed5392bab5eae2ad3.tar.gz |
Describe Jython work
-rw-r--r-- | CHANGES.rst | 5 | ||||
-rw-r--r-- | doc/index.rst | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst index ffc754c6..3a1c25d3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -21,6 +21,10 @@ Unreleased function changed, measurement is likely wrong: None". This was spurious, and has been suppressed. +- Previously, coverage.py couldn't start on Jython, due to that implementation + missing the multiprocessing module (`issue 551`_). This problem has now been + fixed. + - Let's say you ran the HTML report over and over again in the same output directory, with ``--skip-covered``. And imagine due to your heroic test-writing efforts, a file just acheived the goal of 100% coverage. With @@ -28,6 +32,7 @@ Unreleased left behind. This file is now properly deleted. .. _issue 549: https://bitbucket.org/ned/coveragepy/issues/549/skip-covered-with-100-coverage-throws-a-no +.. _issue 551: https://bitbucket.org/ned/coveragepy/issues/551/coveragepy-cannot-be-imported-in-jython27 .. _changes_431: diff --git a/doc/index.rst b/doc/index.rst index ff33c4c5..a39fb359 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -77,9 +77,9 @@ not. * Python versions 2.6, 2.7, 3.3, 3.4, 3.5, and 3.6. - * PyPy2 5.6. + * PyPy2 5.6 and PyPy3 5.5. - * PyPy3 5.5. + * Jython 2.7.1 beta, though only for running code, not reporting. **This is a pre-release build. The usual warnings about possible bugs apply.** The latest stable version is coverage.py 4.2, `described here`_. |