commit: 0b3b0734f01cfd7e400d0a5ee1939e861961dc4c Author: Zac Medico <zmedico <AT> gentoo <DOT> org> AuthorDate: Sat Oct 14 22:06:09 2023 +0000 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org> CommitDate: Sat Oct 14 22:10:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b3b0734
dev-python/pylama: Fix test_pylint elif bug 893838 Closes: https://bugs.gentoo.org/893838 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org> .../pylama/files/pylama-8.4.1-dummy-elif.patch | 32 ++++++++++++++++++++++ dev-python/pylama/pylama-8.4.1-r1.ebuild | 1 + 2 files changed, 33 insertions(+) diff --git a/dev-python/pylama/files/pylama-8.4.1-dummy-elif.patch b/dev-python/pylama/files/pylama-8.4.1-dummy-elif.patch new file mode 100644 index 000000000000..788d38382114 --- /dev/null +++ b/dev-python/pylama/files/pylama-8.4.1-dummy-elif.patch @@ -0,0 +1,32 @@ +From 2093ce0ad405e20efa3f2dad771a04577e0f7e6b Mon Sep 17 00:00:00 2001 +From: Stanislav Levin <[email protected]> +Date: Fri, 12 May 2023 19:38:41 +0300 +Subject: [PATCH] tests: Sync pylint's no-else-return + +https://github.com/klen/pylama/pull/243 + +See https://pylint.readthedocs.io/en/latest/user_guide/messages/refactor/no-else-return.html for details. + +Fixes: https://github.com/klen/pylama/issues/238 +Signed-off-by: Stanislav Levin <[email protected]> +--- + dummy.py | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/dummy.py b/dummy.py +index c19ee6d..09a0e3c 100644 +--- a/dummy.py ++++ b/dummy.py +@@ -22,10 +22,10 @@ def __init__(self, filename, loc, use_column=True): + if test == 1: + if test == 1: + return 28 +- elif test == 2: ++ if test == 2: + return 28 + return 28 +- elif test == 2: ++ if test == 2: + return 28 + + def __str__(self): diff --git a/dev-python/pylama/pylama-8.4.1-r1.ebuild b/dev-python/pylama/pylama-8.4.1-r1.ebuild index c1a76432c6e9..30c5ca59c22f 100644 --- a/dev-python/pylama/pylama-8.4.1-r1.ebuild +++ b/dev-python/pylama/pylama-8.4.1-r1.ebuild @@ -45,6 +45,7 @@ distutils_enable_tests pytest PATCHES=( "${FILESDIR}"/${P}-tomli.patch + "${FILESDIR}"/${P}-dummy-elif.patch ) EPYTEST_DESELECT=(
