guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: python-aiohttp: Skip the tests.


From: guix-commits
Subject: branch master updated: gnu: python-aiohttp: Skip the tests.
Date: Mon, 17 Jan 2022 19:41:24 -0500

This is an automated email from the git hooks/post-receive script.

lfam pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 2cac7d328a gnu: python-aiohttp: Skip the tests.
2cac7d328a is described below

commit 2cac7d328abb84dc00118286e9647d2715539c4d
Author: Leo Famulari <leo@famulari.name>
AuthorDate: Mon Jan 17 19:36:45 2022 -0500

    gnu: python-aiohttp: Skip the tests.
    
    The test suite is failing because it fails to handle a deprecation
    warning. Just skip it for now.
    
    * gnu/packages/python-web.scm (python-aiohttp)[arguments]: Skip the test 
suite.
---
 gnu/packages/python-web.scm | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 997b98e2a9..7fa98b7933 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -188,7 +188,10 @@ API rules.")
                        "aiohttp/_websocket.c"))))))
     (build-system python-build-system)
     (arguments
-     '(#:phases
+     '(;; The test suite fails to handle a deprecation warning:
+       ;; "E           DeprecationWarning: The loop argument is deprecated 
since Python 3.8, and scheduled for removal in Python 3.10."
+       #:tests? #f
+       #:phases
        (modify-phases %standard-phases
          (add-after 'unpack 'fix-tests
            (lambda _



reply via email to

[Prev in Thread] Current Thread [Next in Thread]