From unknown Fri Jun 20 07:15:50 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#76917 <76917@debbugs.gnu.org> To: bug#76917 <76917@debbugs.gnu.org> Subject: Status: [PATCH] gnu: python-numba: Disable tests that are not reproducible. Reply-To: bug#76917 <76917@debbugs.gnu.org> Date: Fri, 20 Jun 2025 14:15:50 +0000 retitle 76917 [PATCH] gnu: python-numba: Disable tests that are not reprodu= cible. reassign 76917 guix-patches submitter 76917 Jelle Licht severity 76917 normal tag 76917 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 10 10:22:20 2025 Received: (at submit) by debbugs.gnu.org; 10 Mar 2025 14:22:20 +0000 Received: from localhost ([127.0.0.1]:39105 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tre1F-0005zw-M4 for submit@debbugs.gnu.org; Mon, 10 Mar 2025 10:22:20 -0400 Received: from lists.gnu.org ([2001:470:142::17]:44512) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tre1C-0005zd-C4 for submit@debbugs.gnu.org; Mon, 10 Mar 2025 10:22:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tre13-0004fv-2V for guix-patches@gnu.org; Mon, 10 Mar 2025 10:22:01 -0400 Received: from mail2.fsfe.org ([213.95.165.55]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tre0z-0007W3-Tf for guix-patches@gnu.org; Mon, 10 Mar 2025 10:22:00 -0400 From: Jelle Licht DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fsfe.org; s=2023072501; t=1741616556; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=7u8v1imOMpCgl2VFu0hT95BqNVjQLsUq3i7TdM/qHfw=; b=WOJlKq9reImONdvfA/KpMcbfGCnC9K9QfvodW1VlwTtikzA0SttOFFa+UE+2+q/VLb34oy AmK2p/PUz/ELqd5pl+NKqna9aZQvYxDSe3LKmXKDb25PqrJ0Ab/1/foOui4M3BdhNe1gkV FqR/B9DWYUVFb3zMT9bedC6pKgokLNU= To: guix-patches@gnu.org Subject: [PATCH] gnu: python-numba: Disable tests that are not reproducible. Date: Mon, 10 Mar 2025 12:54:32 +0100 X-Debbugs-Cc: Lars-Dominik Braun , Munyoki Kilyungi , Sharlatan Hellseher , Tanguy Le Carrour , jgart Message-Id: MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=213.95.165.55; envelope-from=jlicht@fsfe.org; helo=mail2.fsfe.org X-Spam_score_int: -70 X-Spam_score: -7.1 X-Spam_bar: ------- X-Spam_report: (-7.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.1 (/) * gnu/packages/python-xyz.scm (python-numba):[arguments]: Adjust the 'disable-failing-tests phase to skip some additional tests that can fail depending on current CPU. Change-Id: I67f3a100f5863f6d946a8d07428e802178bd7391 --- gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9f2829c4a8..4cb7c72a82 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -29988,6 +29988,29 @@ (define-public python-numba (substitute* "numba/tests/test_import.py" (("def test_no_accidental_warnings") "def disabled_test_no_accidental_warnings")) + ;; These tests fail due to result rounding depending on CPU. + (substitute* "numba/tests/test_looplifting.py" + (("def test_lift_objectmode_issue_4223") + "def disabled_test_lift_objectmode_issue_4223")) + (substitute* "numba/tests/test_extending.py" + (("def test_series_ufunc") + "def disabled_test_series_ufunc") + (("def test_index_ufunc") + "def disabled_test_index_ufunc")) + (substitute* "numba/tests/test_array_exprs.py" + (("def test_explicit_output") + "def disabled_test_explicit_output")) + (substitute* "numba/tests/test_target_extension.py" + (("def test_basic_offload") + "def disabled_test_basic_offload")) + (substitute* "numba/tests/test_np_functions.py" + (("def test_windowing") + "def disabled_test_windowing")) + ;; This fails nondeterministically, possibly depending on CPU. + ;; https://github.com/numba/numba/issues/8282. + (substitute* "numba/tests/test_function_type.py" + (("def test_wrapper_address_protocol_libm") + "def disabled_test_wrapper_address_protocol_libm")) ;; Some tests timeout or crash on some architectures. ,@(cond ((target-aarch64?) base-commit: 1548403fa70609a2efd47d1a802587799dc022d6 -- 2.48.1 From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 10 12:29:35 2025 Received: (at 76917) by debbugs.gnu.org; 10 Mar 2025 16:29:35 +0000 Received: from localhost ([127.0.0.1]:39476 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1trg0O-0004It-5I for submit@debbugs.gnu.org; Mon, 10 Mar 2025 12:29:35 -0400 Received: from mail-oo1-xc2f.google.com ([2607:f8b0:4864:20::c2f]:49533) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1trg0J-0004Ie-PU for 76917@debbugs.gnu.org; Mon, 10 Mar 2025 12:29:25 -0400 Received: by mail-oo1-xc2f.google.com with SMTP id 006d021491bc7-600131846ecso1013339eaf.3 for <76917@debbugs.gnu.org>; Mon, 10 Mar 2025 09:29:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=greghogan-com.20230601.gappssmtp.com; s=20230601; t=1741624156; x=1742228956; darn=debbugs.gnu.org; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=caPR1MkkP5A0udIWMFbwygYPZ6apM3EVeV73TIVcFRs=; b=x/jhibj5QYBfTRPm1c7EbTcteB+RVgaa3mQWSxheL+j0chR+I5ztkJFnx2ms3nnQ9E TyJ3/Skt9UzrbmRrsRITSc7qA6YhAzQvskW1vACV5Is5SLGEV5dpIr8c+j35vvpPXWBV aOOjC5P55YmyHjifSPQpeIfe4j9wq/SuMz05UwUSZPG774DsUZCWxL3+6lLqCIlvTA2X Plz/BxCdKwczWMHDhHe7NLzcfp7RTy0cLhuhMTjM9Ldz/BRsWjhNenjh/vEu+vMFntX6 z9CtltiLhmMSMaTA40aVH/V0j9sJn018L+NLlXpEJFli2gGaXhHRp7+EBbcpNfWxAOLn 0Lsg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1741624156; x=1742228956; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=caPR1MkkP5A0udIWMFbwygYPZ6apM3EVeV73TIVcFRs=; b=QRG1wfj0tec7ApA73GcgE/PZzViqGntSCmZTneDsqgh8cCWZSCjJJSvRcrA3GP4BZs 6rek9qXOnmBPGa1cYjvCo4TAVaiMHCfsnzIy9gAdHZ2rgYuZHByVw57qAdbTY9Jl8P+V 3ItpQolkiyFSttpSuIykCGyB7BIya3f6E0txJXvVuOERJ62MIkGmvLO3z+COkaaDYbOA 8lwpmavmNklPgwNXD55H8Eh/GJGN7ilnL0DCgdjaa78JVO/6Ldyu86svOGrmrMfOIpEH C0I4PO7rHDnAi1CGZMxYbZo7v3HZfVCgmhPBSPJcfYtZeJrEHzLEkUVheYiAf7AGt+B7 EPyQ== X-Gm-Message-State: AOJu0YxLyrJNgsfHKC4n6oDquy+BYhlWmfQeH2xA0R2Xt6ghjQvNEI49 YGgN+ZP7l2j/t9cYFGb+lBOUsqxWqSRZtaOYxH1JOwqzebmIsVWw28U6B0/oJ43RP2V5oop3qHI E5xOGXaopiAmuClezevhYTuRoaqvt2YYyvDblBw== X-Gm-Gg: ASbGncuqDcJI/VzoFqBDOjeUsD13Srz8aL+OYuhkRmctITQ8H17VuLnfmYZThBdZMCU Dom/lMZgDBkvOOiPRo4cBhdRLzNXgwq0q3zP9CAi09yTrRDybNy3hc9NAk2eijJlxi4tyo8B3SM +QgxfnwgSJPq9ALD6vHWISHNvJng== X-Google-Smtp-Source: AGHT+IEHbbO3HAyzzxtpleY/iX+b7p2y/X6eMsOtouLPttYwlhFVVoriCOXto+njDzlUXJksACXUZAcL57uANiGFJOQ= X-Received: by 2002:a05:6870:89a5:b0:2c2:5369:f3b with SMTP id 586e51a60fabf-2c26102118amr8065868fac.14.1741624156538; Mon, 10 Mar 2025 09:29:16 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Greg Hogan Date: Mon, 10 Mar 2025 12:29:03 -0400 X-Gm-Features: AQ5f1JrFEVwxOiC6rKKEbFPtoHwdBfs_sPuGf7mjZSo1YpVfszj-a4Z77luEK_U Message-ID: Subject: Re: [bug#76917] [PATCH] gnu: python-numba: Disable tests that are not reproducible. To: Jelle Licht Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76917 Cc: Sharlatan Hellseher , Munyoki Kilyungi , 76917@debbugs.gnu.org, Lars-Dominik Braun , jgart , Tanguy Le Carrour X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On Mon, Mar 10, 2025 at 10:23=E2=80=AFAM Jelle Licht wrot= e: > > * gnu/packages/python-xyz.scm (python-numba):[arguments]: Adjust the > 'disable-failing-tests phase to skip some additional tests that can fail > depending on current CPU. > > Change-Id: I67f3a100f5863f6d946a8d07428e802178bd7391 > --- > gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm > index 9f2829c4a8..4cb7c72a82 100644 > --- a/gnu/packages/python-xyz.scm > +++ b/gnu/packages/python-xyz.scm > @@ -29988,6 +29988,29 @@ (define-public python-numba > (substitute* "numba/tests/test_import.py" > (("def test_no_accidental_warnings") > "def disabled_test_no_accidental_warnings")) > + ;; These tests fail due to result rounding depending on CPU= . > + (substitute* "numba/tests/test_looplifting.py" > + (("def test_lift_objectmode_issue_4223") > + "def disabled_test_lift_objectmode_issue_4223")) > + (substitute* "numba/tests/test_extending.py" > + (("def test_series_ufunc") > + "def disabled_test_series_ufunc") > + (("def test_index_ufunc") > + "def disabled_test_index_ufunc")) > + (substitute* "numba/tests/test_array_exprs.py" > + (("def test_explicit_output") > + "def disabled_test_explicit_output")) > + (substitute* "numba/tests/test_target_extension.py" > + (("def test_basic_offload") > + "def disabled_test_basic_offload")) > + (substitute* "numba/tests/test_np_functions.py" > + (("def test_windowing") > + "def disabled_test_windowing")) > + ;; This fails nondeterministically, possibly depending on C= PU. > + ;; https://github.com/numba/numba/issues/8282. > + (substitute* "numba/tests/test_function_type.py" > + (("def test_wrapper_address_protocol_libm") > + "def disabled_test_wrapper_address_protocol_libm")) > ;; Some tests timeout or crash on some architectures. > ,@(cond > ((target-aarch64?) > > base-commit: 1548403fa70609a2efd47d1a802587799dc022d6 > -- > 2.48.1 I think that I have been seeing both sets of errors disabled by this patch, and I am now able to build python-numba again. Reviewed-by: Greg Hogan From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 10 15:12:38 2025 Received: (at 76917) by debbugs.gnu.org; 10 Mar 2025 19:12:38 +0000 Received: from localhost ([127.0.0.1]:39813 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1triYI-0003be-6A for submit@debbugs.gnu.org; Mon, 10 Mar 2025 15:12:38 -0400 Received: from mail-wm1-x335.google.com ([2a00:1450:4864:20::335]:50571) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1triYG-0003bO-02 for 76917@debbugs.gnu.org; Mon, 10 Mar 2025 15:12:36 -0400 Received: by mail-wm1-x335.google.com with SMTP id 5b1f17b1804b1-43cef035a3bso12189695e9.1 for <76917@debbugs.gnu.org>; Mon, 10 Mar 2025 12:12:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1741633950; x=1742238750; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=/9bVodGIOP+uUmLEjCLxitnTXylw41lTqLYbGYqfYaA=; b=WcXxeNkrtT5G2udbTlXSdEd3hIfw4Qdq+E/37XKaTa4pRbpk5RBCngVHuvcQf+rxXM 4PwdCSkOl4fZ4opBeIGyWPmRRYpaWXDyr921UDVb3x4181eOvfcCCmXFL0ffppoTewqy IBm1R8bOYsiZBt/a2mxXWssRrCJV9QRB/7SqxdWD9Q56fb1AsGXEya2IvH1pLk4w498D O9SlUPIEwznCAbwYzaYmEMiNFDZpDJZfkjdgtnPCrSisq/ketEUSn93CCQXts0+OxD7E sQRSO+KJFkkR5zd20MH1WG9FsoCQzqpoFu8W50wFyYd9seJnb175c0Ziv5FOS+My3Ff5 Wwew== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1741633950; x=1742238750; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=/9bVodGIOP+uUmLEjCLxitnTXylw41lTqLYbGYqfYaA=; b=Sdw6MzYWQVchm+6ffP7ua18LlcX11dXtvFVWybJ1LRWBOodCIHrB3+2u2eZZl24iDh CjnDei9OJbV2qYIlacSrujIca3PewIGCvIgC6gcsxSBXIOPbFtymTOo31vavryq0wmTC xg4NVbjnBVdDwnBJrYUyZGSbYO0dSkrT0yhE8jxFIecthzXyL+i0roVH8TYqggE04NLI MJXyM1hwq0VyY7z/lWN/fiNWhjzL01zIV8yiF43xffqJwMNxDcmll3FPALG8P8zZBZkV gNDC6dNtGTOZGiv5kXnQb0kbulPlAMslKf6w9mdazbYWKFQPljl20vuHikOxKzNCtwa2 4H7g== X-Gm-Message-State: AOJu0YyTLEuDcX4MMVE28vROQmI0v0zpMkdLTrkG/GxWGWd4qodPbvcI OsSIVMpLUcK0mLtKJWL/Gi1xYIe3YK03LVn3mDIL897j/E7p0bdad3Aj2zMn X-Gm-Gg: ASbGncv1ZkbZL+C8sq0rUbUG5xHheLTxJrmdtB+QXPi6PlpjoDLpRwzYVqM+2dNskHD PcziFAqMa0f+n5aOzyh4oJNKUmI6CPPW/3vmrWq2nRtP6z+c4Odg2f1hyfvH37FtVYLcKORzOtT B/JAENwbilZ5M9tbmGYi1U7GhG3RfMcmCi86jLelF5EQrF3WSX1WJwoSsBjcYzRtunl4f5p3ao+ OehrAuhT8X97mtc6YB6Wr7PFWsk5Aqw2o//MMKNLktOROPG86T2DNGZv23ZoiJBAK5TLFjxr512 JcAgAVaay3bTKlTXyznv/Wl6Gsv2Ne5IJSihN6lKR9LNLuG/yx5NUwyCRDIWpQ15iH4Ftc0CLfB TmE8CIfaMkRXNSL/diopE X-Google-Smtp-Source: AGHT+IGh0BWyVn2wxtgPtRS+2vSTZAcfCh1+r9eM/eN5RgF3aQpiV7Q5TkA3FWqzzzgWk6Y/y1JRCw== X-Received: by 2002:a05:600c:4f0c:b0:43c:ef13:7e5e with SMTP id 5b1f17b1804b1-43cef137f07mr42485385e9.26.1741633949501; Mon, 10 Mar 2025 12:12:29 -0700 (PDT) Received: from guxtil (cpc100684-bagu15-2-0-cust967.1-3.cable.virginm.net. [86.8.111.200]) by smtp.gmail.com with ESMTPSA id ffacd0b85a97d-3912bfba66esm15993033f8f.18.2025.03.10.12.12.28 for <76917@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 10 Mar 2025 12:12:28 -0700 (PDT) From: Sharlatan Hellseher To: 76917@debbugs.gnu.org Subject: [PATCH] gnu: python-numba: Disable tests that are not reproducible. Date: Mon, 10 Mar 2025 19:12:26 +0000 Message-ID: <87ldtck8dh.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76917 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain Hi, It looks like Numba is CPU specific as I could build it all the time on AMD Ryzen 7 3800X 8-Core Processor, but it fails to pass tests on ci.guix.gnu.org on other user's machines. It supports Pytest as test runner (PR #4781: WIP/runtest cf pytest)[1] I might refactor the package to skip tests in #:tests-flags instead altering tests files. Meanwhile reviewing patch and build python-numba after apply. 1. https://github.com/numba/numba/blob/05b4cad9e10132c6c0166e76d80b034a18bce33a/docs/source/release-notes.rst#L3198 -- Oleg --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQJKBAEBCgA0FiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmfPOZoWHHNoYXJsYXRh bnVzQGdtYWlsLmNvbQAKCRB21ye/9izStUsqD/48JdM2QssNvvXg7DR/p6Yp/akP i4AmsCvhMyYOnzeqGVKn8O2Ml3JaoDjjC4h6xtzOCcNjyUhwoBpYnlLsia0NcVQz /i7XqqUb1xXJzg1Cx9b8/KLKQklNmOCLnw/Yl3wg3rIiq0gExWq4o3/tHokJ8+5F fLYWdYVrsGiZ49+/pgXcO9IKJMqAuUYo1DjX+lUkXKqMdywn49Uu8gWEbKR0FXDX 0v3pddp99GeUjSGovIp6Pvre3TOy3VInHv19egBU8x+n7V2Pp1Un8FczrT8pdDtu kGNKlbBYkwgH9W4EzQKZRG6I7vUN1OTLTaB894usV45YQ0AaY0oM6BiqIjUCxzve 9D+Ilyq8jc/zdHFNdsW5hYejCeWQ0JpiXFFdpmpGaJz1dmLqS5Tz6KDuJzvMi782 dtI697LTGB4yf47yUUjsxgi+mnIlePOCIPbGuwkDunDRPwfd8gQOXqdOX+8rxAP1 W4bPr9+tE0u6uvnzpJn+R1Ow2AANipsHgYhZhHot5nefcw36vpxf64n2n03fBpiv O8LxEe9BXmFnS8s3tFKDpSUkIx7rzK3XCovgGdib1TyjniG6zY8Lohgk61oyARu8 e/KB9Tdyv9YdbnBjrNW2tbWsf2ZLmn7Phm81eu3CprsTqoDXFuaWGPDKRv3bOP3n eonwRN1TFEY/Eq/VuQ== =BPkr -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 10 18:46:21 2025 Received: (at 76917-done) by debbugs.gnu.org; 10 Mar 2025 22:46:21 +0000 Received: from localhost ([127.0.0.1]:40315 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1trlt7-0000si-1y for submit@debbugs.gnu.org; Mon, 10 Mar 2025 18:46:21 -0400 Received: from mail-wr1-x42c.google.com ([2a00:1450:4864:20::42c]:49551) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1trlt3-0000sS-7n for 76917-done@debbugs.gnu.org; Mon, 10 Mar 2025 18:46:18 -0400 Received: by mail-wr1-x42c.google.com with SMTP id ffacd0b85a97d-3911748893aso2964540f8f.3 for <76917-done@debbugs.gnu.org>; Mon, 10 Mar 2025 15:46:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1741646771; x=1742251571; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=NRkr8cmA8v4g+DFFs73+J2VDWd44nLul9Qps5o+KCGo=; b=LWprZUbmIYLwF/lVXKZ9vXsSJFVKcWGCtBCMG7fRRQV5O/YPBHmr1QKjM2EhMzZz8m rX7iEbgJvydbSGVEuE3A+3PkoxrDN3bmqRD01/CfYBK+ZbL9Y2OLiLNFQ9wqEat9rlDG 8RVIRX9ZBSasjCLG8F7sKY1SoYf6lpmr7ZJ1owd4jATtweZIZBt++nCBcocTPBRm1YKg sZy8ZiSOg6BqtlagiStJDhIhJ3OE4C70yTE52jNoWPzaI/d+QTWYnMFePZtcxmNXfNzB 6P+boZCnRAX54+MOVBDhgrJVAToHM9rENrr8W2PFL27OJhL2l1oE3HmBLORtfwUcINfn xJjg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1741646771; x=1742251571; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=NRkr8cmA8v4g+DFFs73+J2VDWd44nLul9Qps5o+KCGo=; b=U1GIvFO+5Wbx8SUWYIc+UZa1+Lm1DXoWseq/mHncynJE1uJ5XiTCUC+Tzy4ToYlHWJ oWrIRIcBVdoMD7IsLcozwkTi3YlCMy69RnLYaqlQ2o7rPggDGgOn8YeKzEh/tM3poVfn mllP6uQ+xJf+pFydZsVzy03I6PoZfKDEUgQ7ZBf4Q3WKtOw6djvcJ9OOybUZK6gJDBBf 3PUcMEp1jqo9ufDIUxpz7YIwqIsjpT5hieexVOyg92OfuQjKYwT3SBVJQsGZ9q5T0XMo kofwYRmINXwa6vzQ0KrnHQflIucwihYLs1fM7KABKm9x8ykvTWVmLCcVtk6W/NfMkrPC E+mA== X-Gm-Message-State: AOJu0YwybsoIHfZyVrfh9wT/L6nUZToQ7PlqU2zt1U3K7ud4OmsQXfye ooJ5LfGhPYcX5ua+n75rJ0dy9Y0f5j7gMMN9yORg1nPlXf7KCpt8BEM5O7KX X-Gm-Gg: ASbGncuav3gnWSGj5NldbCiGtfPD3mpyuUIBULx/69SNCKDg8TtRXl0092WKSRbPX08 +fKO9tqrRjMm3bO6d1mrvyLFvBAhQVHiRPk0N6fzz3vodvzXOXnqd4VI05C7Pq4q6aNWR2rwK6b 5owwVXZp32GaI6LqZCUeDJv1wN/SH98NZxQgJ3t9VUoPNFrxlv7/kDpUjheKY+IntFeBX5cHfyB mDsUfPuiumSjKyIrd1K0jaKpECfnlXHhcRUvCT853NMw+k6sDt80xmLF/zCmEzdtlijoFbH9Kbs KSZm5WnHsTcDkKS6YhIa0UJ8nkWKR6gby4NtpYWvWCqMKB41wpdQntFe69h9jrMisVS277OH7PK R0+zjiaBbCY386wZEhGxW X-Google-Smtp-Source: AGHT+IHIAlb+zoUYxq5K2MjxVZEvBdX+f67AgId71n1tgxzFvPrRmOEhTSdiRN0/1r3tPI+7BEEx8A== X-Received: by 2002:a5d:6d8c:0:b0:391:952:c728 with SMTP id ffacd0b85a97d-39132d77544mr9238271f8f.4.1741646770671; Mon, 10 Mar 2025 15:46:10 -0700 (PDT) Received: from guxtil (cpc100684-bagu15-2-0-cust967.1-3.cable.virginm.net. [86.8.111.200]) by smtp.gmail.com with ESMTPSA id ffacd0b85a97d-3912c01957csm16202438f8f.47.2025.03.10.15.46.09 for <76917-done@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 10 Mar 2025 15:46:09 -0700 (PDT) From: Sharlatan Hellseher To: 76917-done@debbugs.gnu.org Subject: [PATCH] gnu: python-numba: Disable tests that are not reproducible. Date: Mon, 10 Mar 2025 22:46:06 +0000 Message-ID: <87zfhsy05t.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76917-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain Hi, Tests passed on my machine: --8<---------------cut here---------------start------------->8--- Ran 10491 tests in 1336.846s <...> > grep -m1 "model name" /proc/cpuinfo model name : AMD Ryzen 7 3800X 8-Core Processor --8<---------------cut here---------------end--------------->8--- Pushed to master as 42773718d5d5d42137ac84826850256fd6bed606. -- Oleg --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQJKBAEBCgA0FiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmfPa64WHHNoYXJsYXRh bnVzQGdtYWlsLmNvbQAKCRB21ye/9izStQR9D/0V7znx8IVOKexDNy4NqQbOPkvf mgiApc8N6NheTFl71hi2QzMj8Hlb13oIZn2Tx95rgWPLrTNYVEhIAVbwSVWmkypH HYvcjliIHzOub5Fb4ljmHiTJAQLa9ZyMKcvFj1tKV7ZrzfyFYY5B9VhAz9hPbTQ8 F5cVFr3me36CPfukWNkVbbs9fOgWTh5w1Yhp/uMoRT+GM9jCJ1l94ru9HPAwWEGt AX1CExl96rQyeZVQ39QFK1ocOqARwD/XZ8r8gIY2u9Sf1a8Gz8O+PcDCcItac4YN QhzpanCHTQB5IVak5uPr2k7I4AuwRNzVUZyuRWgDoBebNEqssEKC0rB4VRJaFO9L Fr3wfBPR6ANQkzohAjEDmM3rJjW6D3B5BundKjHS+OWo/DaS5UfFcemS5AfpmMLZ ShOHNV56sqobH9MQHLXXcR4pUalD7i7P2kCgwajtIoONugc6nLneHPobdSRTXtS3 umGsU2Zr/qpgIApuMPBu8cUkGHRFJE4sVUmJa91Dkc03nd/1NmyRQdHR5gd1naA9 BsL/KDRoLYb1hFZwp0RR+65oGfgg8M48GNjVP7yq69avG/dCCgi5T+t4qlWzpmgS lJelqumBNP4X+p7+qIZtu7lcgggfLMMBO4jrEcdZmBiADmUj7j/Q9iyuyGyMz2CY qt1SgjCLoIl2rLO+hw== =cFdw -----END PGP SIGNATURE----- --=-=-=-- From unknown Fri Jun 20 07:15:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 08 Apr 2025 11:24:12 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator