commit: cd550ba6da8b975f452778974fd06af5431a91e6 Author: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com> AuthorDate: Fri Feb 9 13:57:25 2024 +0000 Commit: Nicola Smaniotto <smaniotto.nicola <AT> gmail <DOT> com> CommitDate: Fri Feb 9 13:58:35 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cd550ba6
games-rpg/open-adventure: ignore code quality checks Closes: https://bugs.gentoo.org/924149 Closes: https://bugs.gentoo.org/924113 Signed-off-by: Nicola Smaniotto <smaniotto.nicola <AT> gmail.com> games-rpg/open-adventure/open-adventure-1.18.ebuild | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/games-rpg/open-adventure/open-adventure-1.18.ebuild b/games-rpg/open-adventure/open-adventure-1.18.ebuild index 1975dd167d..e4f10f5502 100644 --- a/games-rpg/open-adventure/open-adventure-1.18.ebuild +++ b/games-rpg/open-adventure/open-adventure-1.18.ebuild @@ -26,10 +26,6 @@ DEPEND="dev-libs/libedit" RDEPEND="${DEPEND}" BDEPEND=" $(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]' ) - test? ( - dev-util/cppcheck - $(python_gen_any_dep 'dev-python/pylint[${PYTHON_USEDEP}]') - ) doc? ( dev-ruby/asciidoctor ) " @@ -37,7 +33,6 @@ DOCS=( NEWS.adoc hints.adoc history.adoc README.adoc notes.adoc ) python_check_deps() { python_has_version "dev-python/pyyaml[${PYTHON_USEDEP}]" - use test && python_has_version "dev-python/pylint[${PYTHON_USEDEP}]" } src_prepare() { @@ -74,6 +69,9 @@ src_install() { } src_test() { + emake cheat + pushd tests || die # parallel tests often fail - emake -j1 check + emake -j1 + popd || die }
