diff options
| -rw-r--r-- | dev-python/pdm/pdm-2.25.4-r1.ebuild (renamed from dev-python/pdm/pdm-2.25.4.ebuild) | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev-python/pdm/pdm-2.25.4.ebuild b/dev-python/pdm/pdm-2.25.4-r1.ebuild index e7e335bd8196..610e35d9d2ab 100644 --- a/dev-python/pdm/pdm-2.25.4.ebuild +++ b/dev-python/pdm/pdm-2.25.4-r1.ebuild @@ -61,6 +61,9 @@ src_prepare() { # unpin deps sed -i -e 's:,<[0-9.a]*::' pyproject.toml || die + # remove pkgutil namespace magic, as it doesn't work and makes + # dev-python/pdm-backend tests test the wrong package + rm src/pdm/__init__.py || die } python_test() { @@ -70,7 +73,9 @@ python_test() { # unhappy about extra packages being installed? # (also fails randomly in venv) tests/cli/test_build.py::test_build_with_no_isolation + # TODO: random regression? + tests/cli/test_python.py::test_find_python ) - epytest -m "not network and not integration and not path" + epytest -m "not network and not integration and not path" } |
