From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:46068) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gwUWe-0001as-M5 for guix-patches@gnu.org; Wed, 20 Feb 2019 11:15:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gwUWb-0001cl-48 for guix-patches@gnu.org; Wed, 20 Feb 2019 11:15:12 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:57573) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gwUWU-0001Yq-Cd for guix-patches@gnu.org; Wed, 20 Feb 2019 11:15:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gwUWU-0003aO-5X for guix-patches@gnu.org; Wed, 20 Feb 2019 11:15:02 -0500 Subject: [bug#34592] [PATCH] gnu: python-fenics-dijitso: Fix build. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:45300) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gwUV1-00005Q-JM for guix-patches@gnu.org; Wed, 20 Feb 2019 11:13:32 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gwUUv-0000cS-Vb for guix-patches@gnu.org; Wed, 20 Feb 2019 11:13:29 -0500 Received: from smtp.hosts.co.uk ([85.233.160.19]:12812) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gwUUs-0000aq-JD for guix-patches@gnu.org; Wed, 20 Feb 2019 11:13:24 -0500 From: Paul Garlick Date: Wed, 20 Feb 2019 12:16:07 +0000 Message-Id: <1550664967-441-1-git-send-email-pgarlick@tourbillion-technology.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 34592@debbugs.gnu.org Cc: Paul Garlick * gnu/packages/simulation.scm (python-fenics-dijitso)[arguments]: Skip parallel tests. --- gnu/packages/simulation.scm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gnu/packages/simulation.scm b/gnu/packages/simulation.scm index 20b62f3..3637cc3 100644 --- a/gnu/packages/simulation.scm +++ b/gnu/packages/simulation.scm @@ -268,6 +268,11 @@ problems for efficient solution on parallel systems.") (setenv "PYTHONPATH" (string-append (getcwd) ":" (getenv "PYTHONPATH"))) (with-directory-excursion "test" + ;; Disable parallel tests to avoid race condition. See + ;; https://github.com/pytest-dev/pytest-cov/issues/237. + (substitute* "runtests.sh" + (("for p in 1 4 8 16; do") + "for p in 1; do")) (invoke "./runtests.sh")) #t))))) (home-page "https://bitbucket.org/fenics-project/dijitso/") -- 1.8.3.1