guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 27c0c8be940211a9f64226cfc3a5bb5fb5f1d3c5
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jan 10 13:56:17 2026 +0000

    gnu: python-mysql-connector-python: Skip one more test.
    
    * gnu/packages/python-xyz.scm (python-mysql-connector-python):
    [phases]{check}: Skip one more test.
    
    Change-Id: I22277bc3cdf0634b166f3198d005c82c37b8796f
---
 gnu/packages/python-xyz.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a727a1d58a..028496c19a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3546,6 +3546,7 @@ Markdown.  It also includes initial support for 
Google-formatted docstrings.")
     (build-system python-build-system)
     (arguments
      (list
+      ;; tests: 1371 passed
       #:configure-flags
       #~(list (string-append "--with-mysql-capi="
                              #$(this-package-input "mysql"))
@@ -3607,7 +3608,10 @@ Markdown.  It also includes initial support for 
Google-formatted docstrings.")
                 (substitute* "tests/test_mysqlx_connection.py"
                   ;; This fails because of expired certificates.
                   (("def test_ssl_connection")
-                   "def _do_not_test_ssl_connection"))
+                   "def _do_not_test_ssl_connection")
+                  ;; ValueError: Invalid IPv6 URL
+                  (("def test_connection_uri")
+                   "def _do_not_test_connection_uri"))
                 (substitute* "tests/test_constants.py"
                   (("def test_deprecated")
                    "def _do_not_test_deprecated"))

Reply via email to