From 49beaba8dfa5018734a5fe5512733be6a845db4e Mon Sep 17 00:00:00 2001 From: Sam James Date: Tue, 28 Jan 2025 12:17:36 +0000 Subject: [PATCH] dev-util/bugbite-cli: set NEXTEST_TEST_THREADS Otherwise, test execution jobs use all available cores. Signed-off-by: Sam James --- dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild b/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild index a346a3ca7fff7..42a9d2a8c8fb0 100644 --- a/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild +++ b/dev-util/bugbite-cli/bugbite-cli-0.0.13.ebuild @@ -1,11 +1,11 @@ -# Copyright 2024 Gentoo Authors +# Copyright 2024-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 RUST_MIN_VER="1.80.1" -inherit cargo edo shell-completion +inherit cargo edo multiprocessing shell-completion DESCRIPTION="A command line tool for bug, issue, and ticket mangling" HOMEPAGE="https://github.com/radhermit/bugbite" @@ -44,6 +44,7 @@ src_configure() { } src_test() { + local -x NEXTEST_TEST_THREADS="$(makeopts_jobs)" edo cargo nextest run $(usev !debug '--release') --color always --features test --tests ${static_stuff} }