Skip to content

Commit 66a26fd

Browse files
committed
Make sure all test files are packaged
1 parent b31b8e0 commit 66a26fd

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ The released versions correspond to PyPI releases.
1717

1818
### Fixes
1919
* fixed handling of added `strict` argument in Python 3.9.23
20+
* make sure test files are packaged (see [#1186](../../issues/1186))
2021

2122
## [Version 5.9.0](https://pypi.python.org/pypi/pyfakefs/5.8.0) (2025-06-21)
2223
Adds support for an API change in latest Python patch releases.
@@ -25,7 +26,7 @@ Adds support for an API change in latest Python patch releases.
2526
* the message from an `OSError` raised in the fake filesystem has no longer the postfix
2627
_"in the fake filesystem"_ (see [#1159](../../discussions/1159))
2728
* changed implementation of `FakeShutilModule` to prepare it for usage without the patcher
28-
(see [#1171](../../discussions/1171))
29+
(see [#1171](../../issues/1171))
2930

3031
### Enhancements
3132
* added convenience function `add_package_metadata` to add the metadata of a given

pyfakefs/pytest_session_tests/__init__.py

Whitespace-only changes.

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,11 @@ xdist = [
7979
]
8080

8181
[tool.setuptools]
82-
packages = ["pyfakefs"]
82+
include-package-data = true
83+
8384
[tool.setuptools.package-data]
84-
pyfakefs = ["py.typed"]
85+
where = ["pyfakefs"]
86+
pyfakefs = ["py.typed", "**/*.parquet", "**/*.xlsx"]
8587

8688
[tool.setuptools.dynamic]
8789
version = { attr = "pyfakefs.__version__" }

0 commit comments

Comments
 (0)