commit: 4e7aa931a2fac2dd59ebaaf48c936cffd52340c1
Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 25 11:35:56 2021 +0000
Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Wed Aug 25 11:41:02 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e7aa931
dev-python/pylama: enable py3.10, epytest, fix setuptools dep.
Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
dev-python/pylama/pylama-7.7.1-r1.ebuild | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/dev-python/pylama/pylama-7.7.1-r1.ebuild
b/dev-python/pylama/pylama-7.7.1-r1.ebuild
index 3bc25306aca..a7fb5370fb2 100644
--- a/dev-python/pylama/pylama-7.7.1-r1.ebuild
+++ b/dev-python/pylama/pylama-7.7.1-r1.ebuild
@@ -3,8 +3,7 @@
EAPI="7"
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS="rdepend"
+PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
@@ -41,8 +40,10 @@ python_prepare_all() {
}
python_test() {
- # Disable eradicate until it is fixed:
- # https://github.com/klen/pylama/issues/190
- pytest -vv tests --deselect tests/test_linters.py::test_eradicate \
- || die "Tests failed with ${EPYTHON}"
+ local EPYTEST_DESELECT=(
+ # Disable eradicate until it is fixed:
+ # https://github.com/klen/pylama/issues/190
+ tests/test_linters.py::test_eradicate
+ )
+ epytest tests
}