Skip to content

Commit 42202a8

Browse files
committed
docs: keep CHANGES up to date
1 parent 41602b5 commit 42202a8

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGES.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ Unreleased
2828
drive than the current directory. (`pull 1430`_, fixing `issue 1428`_).
2929
Thanks, Lorenzo Micò.
3030

31+
- Fix path calculations when running in the root directory, as you might do in
32+
a Docker container: `pull 1403`_, thanks Arthur Rio.
33+
3134
- Filtering in the HTML report wouldn't work when reloading the index page.
3235
This is now fixed (`pull 1413`_). Thanks, Marc Legendre.
3336

@@ -36,6 +39,7 @@ Unreleased
3639

3740
.. _issue 972: https://github.com/nedbat/coveragepy/issues/972
3841
.. _pull 1347: https://github.com/nedbat/coveragepy/pull/1347
42+
.. _pull 1403: https://github.com/nedbat/coveragepy/issues/1403
3943
.. _pull 1405: https://github.com/nedbat/coveragepy/issues/1405
4044
.. _pull 1413: https://github.com/nedbat/coveragepy/issues/1413
4145
.. _pull 1428: https://github.com/nedbat/coveragepy/issues/1428

CONTRIBUTORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Arcadiy Ivanov
2121
Aron Griffis
2222
Artem Dayneko
2323
Arthur Deygin
24+
Arthur Rio
2425
Ben Carlsson
2526
Ben Finney
2627
Benjamin Schubert

tests/test_files.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111

1212
from coverage import env, files
1313
from coverage.exceptions import ConfigError
14-
from coverage.files import (FnmatchMatcher, ModuleMatcher, PathAliases, TreeMatcher, abs_file,
15-
actual_path, find_python_files, flat_rootname, fnmatches_to_regex)
14+
from coverage.files import (
15+
FnmatchMatcher, ModuleMatcher, PathAliases, TreeMatcher, abs_file,
16+
actual_path, find_python_files, flat_rootname, fnmatches_to_regex,
17+
)
1618
from tests.coveragetest import CoverageTest
1719

1820

0 commit comments

Comments
 (0)