Skip to content

Commit 3c83ccf

Browse files
authored
Merge pull request #204 from jaraco/debt/test-coverage
Ensure project has ample test coverage
2 parents a2aa002 + ad9175d commit 3c83ccf

7 files changed

Lines changed: 330 additions & 153 deletions

File tree

.coveragerc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
omit =
33
# leading `*/` for pytest-dev/pytest-cov#456
44
*/.tox/*
5+
path/py37compat.py
56

67
[report]
78
show_missing = True

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ jobs:
99
python:
1010
- 3.6
1111
- 3.9
12-
- 3.10.0-alpha - 3.10.99
12+
# disabled due to pywin32 availability mhammond/pywin32#1588
13+
# - 3.10.0-alpha - 3.10.99
1314
platform: [ubuntu-latest, macos-latest, windows-latest]
1415
runs-on: ${{ matrix.platform }}
1516
steps:

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v16.1.0
2+
-------
3+
4+
- #204: Improved test coverage across the package to 99%, fixing
5+
bugs in uncovered code along the way.
6+
17
v16.0.0
28
-------
39

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ has several advantages over ``pathlib``:
9797
subclass the model do not need to be concerned with
9898
OS-specific nuances.
9999

100+
This path project has the explicit aim to provide compatibility
101+
with ``pathlib`` objects where possible, such that a ``path.Path``
102+
object is a drop-in replacement for ``pathlib.Path*`` objects.
103+
This project welcomes contributions to improve that compatibility
104+
where it's lacking.
105+
100106
Alternatives
101107
============
102108

0 commit comments

Comments
 (0)