From 6a6e2cce6997d7bc1862d6bdcb90ccc77d285256 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 16 Dec 2024 12:41:36 +0000 Subject: [PATCH] gnu: python-apprise: Respect --cores build argument. * gnu/packages/python-xyz.scm (python-apprise) [arguments]: Respect --cores build argument. Change-Id: I217981c457516a5d02d9d06553c50a6ba7fb2fa7 --- gnu/packages/python-xyz.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fe90c258d2194ddffd264b6f72e93dcb6d03eb09..4cf5d38927d03933db4cd6d4c241830f815df60b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -323,7 +323,7 @@ (arguments (list #:test-flags - #~(list "--numprocesses" "auto" + #~(list "--numprocesses" (number->string (parallel-job-count)) "--ignore=test/test_plugin_macosx.py" "-k" (string-append "not test_plugin_mqtt_tls_connect_success" " and not test_plugin_mqtt_tls_no_verify_success"))))