Skip to content

Commit

Permalink
docs: keep CHANGES up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
nedbat committed Aug 6, 2022
1 parent 41602b5 commit 42202a8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ Unreleased
drive than the current directory. (`pull 1430`_, fixing `issue 1428`_).
Thanks, Lorenzo Micò.

- Fix path calculations when running in the root directory, as you might do in
a Docker container: `pull 1403`_, thanks Arthur Rio.

- Filtering in the HTML report wouldn't work when reloading the index page.
This is now fixed (`pull 1413`_). Thanks, Marc Legendre.

Expand All @@ -36,6 +39,7 @@ Unreleased

.. _issue 972: https://github.com/nedbat/coveragepy/issues/972
.. _pull 1347: https://github.com/nedbat/coveragepy/pull/1347
.. _pull 1403: https://github.com/nedbat/coveragepy/issues/1403
.. _pull 1405: https://github.com/nedbat/coveragepy/issues/1405
.. _pull 1413: https://github.com/nedbat/coveragepy/issues/1413
.. _pull 1428: https://github.com/nedbat/coveragepy/issues/1428
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Arcadiy Ivanov
Aron Griffis
Artem Dayneko
Arthur Deygin
Arthur Rio
Ben Carlsson
Ben Finney
Benjamin Schubert
Expand Down
6 changes: 4 additions & 2 deletions tests/test_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@

from coverage import env, files
from coverage.exceptions import ConfigError
from coverage.files import (FnmatchMatcher, ModuleMatcher, PathAliases, TreeMatcher, abs_file,
actual_path, find_python_files, flat_rootname, fnmatches_to_regex)
from coverage.files import (
FnmatchMatcher, ModuleMatcher, PathAliases, TreeMatcher, abs_file,
actual_path, find_python_files, flat_rootname, fnmatches_to_regex,
)
from tests.coveragetest import CoverageTest


Expand Down

0 comments on commit 42202a8

Please sign in to comment.