From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:37736) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gia3v-00015C-Rn for guix-patches@gnu.org; Sun, 13 Jan 2019 02:20:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gia3v-0008Cx-4T for guix-patches@gnu.org; Sun, 13 Jan 2019 02:20:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:58023) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gia3v-0008Ch-1f for guix-patches@gnu.org; Sun, 13 Jan 2019 02:20:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gia3u-0002Ll-Di for guix-patches@gnu.org; Sun, 13 Jan 2019 02:20:02 -0500 Subject: [bug#34056] [PATCH] core-updates -- gnu: python2: Fix test flags. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:37592) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gia3X-00014N-B8 for guix-patches@gnu.org; Sun, 13 Jan 2019 02:19:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gia3W-0007yK-Mu for guix-patches@gnu.org; Sun, 13 Jan 2019 02:19:39 -0500 Received: from mail.onyx.syn-alias.com ([206.152.134.66]:47177 helo=smtp.centurylink.net) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gia3W-0007w4-G8 for guix-patches@gnu.org; Sun, 13 Jan 2019 02:19:38 -0500 From: ericbavier@centurylink.net Date: Sun, 13 Jan 2019 01:18:49 -0600 Message-Id: <20190113071850.14337-1-ericbavier@centurylink.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 34056@debbugs.gnu.org Cc: Eric Bavier From: Eric Bavier * gnu/packages/python.scm (python-2.7)[arguments]: 'EXTRATESTOPTS' -> 'TESTOPTS'. This overrides the default '-l' argument for memory leak checks which is not compatible with the -j for parallelism. --- gnu/packages/python.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 9b43f465cc..dffded738d 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -194,7 +194,7 @@ (assoc-ref %outputs "out") "/lib")) ;; With no -j argument tests use all available cpus, so provide one. #:make-flags - (list (format #f "EXTRATESTOPTS=-j~d" (parallel-job-count))) + (list (format #f "TESTOPTS=-j~d" (parallel-job-count))) #:modules ((ice-9 ftw) (ice-9 match) (guix build utils) (guix build gnu-build-system)) -- 2.20.1