apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.

commit 4a358e4afa98524f6ca6537420f8a83c6e246fd7
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Wed Apr 20 08:51:49 2022 -0400

    gnu: python2-sqlalchemy: Skip a failing test.
    
    * gnu/packages/databases.scm (python2-sqlalchemy)[phases]{check}: Skip the
    test_fixture_five test.
---
 gnu/packages/databases.scm | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 4e292213ea..e1abf0f426 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -3368,7 +3368,12 @@ simple and Pythonic domain language.")
                     (invoke "pytest" "-vv"
                             ;; The memory usage tests are very expensive and 
run in
                             ;; sequence; skip them.
-                            "-k" "not test_memusage.py"))))))))
+                            "-k"
+                            (string-append
+                             "not test_memusage.py"
+                             ;; This test fails with "AssertionError: Warnings
+                             ;; were not seen [...]".
+                             " and not test_fixture_five")))))))))
       ;; Do not use pytest-xdist, which is broken for Python 2.
       (native-inputs (modify-inputs (package-native-inputs base)
                        (delete "python-pytest-xdist"))))))

Reply via email to