GNU bug report logs - #78494
[PATCH python-team] gnu: awscli-2: Skip failing tests.

Previous Next

Package: guix-patches;

Reported by: Leo Nikkilä <hello <at> lnikki.la>

Date: Mon, 19 May 2025 15:03:02 UTC

Severity: normal

Tags: patch

To reply to this bug, email your comments to 78494 AT debbugs.gnu.org.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#78494; Package guix-patches. (Mon, 19 May 2025 15:03:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Leo Nikkilä <hello <at> lnikki.la>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Mon, 19 May 2025 15:03:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Leo Nikkilä <hello <at> lnikki.la>
To: guix-patches <at> gnu.org
Cc: Leo Nikkilä <hello <at> lnikki.la>
Subject: [PATCH python-team] gnu: awscli-2: Skip failing tests.
Date: Mon, 19 May 2025 17:52:42 +0300
Skips two failing tests with the awscli-2 package, which have been
failing the build recently.

The first one is related to the version of prompt-toolkit that's being
used as an input. Upstream doesn't support some of the later versions,
however this doesn't seem to cause any visible problems right now apart
from the test failing, at least on aarch64.

The other issue is due to `os.environ["PATH"]` throwing a KeyError once
in a while, seems like this test is being affected by some other test
since running it in isolation works for me. See
<https://ci.guix.gnu.org/build/10641072/log> for an example.

* gnu/packages/python-web.scm (awscli-2)[arguments]<#:test-flags>: Skip
failing prompt-toolkit tests, likewise for emrutils.
---
 gnu/packages/python-web.scm | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 2443ab1195f..462ca1008fe 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -5207,12 +5207,19 @@ (define-public awscli-2
     (arguments
      (list
       #:test-flags
-      ;; The resource leak tests use ps to check for memory consumption.
-      '(list "--ignore=functional/botocore/leak/test_resource_leaks.py"
+      '(list ;; This version of prompt-toolkit has issues with awscli-2, see
+             ;; <https://github.com/aws/aws-cli/issues/9453#issuecomment-2822186530>.
+             "--ignore=functional/autoprompt/test_prompttoolkit.py"
+             ;; The resource leak tests use ps to check for memory consumption.
+             "--ignore=functional/botocore/leak/test_resource_leaks.py"
              ;; These tests complain about unavailable TLS certs.
              "--ignore=functional/ec2instanceconnect/test_opentunnel.py"
              ;; These seem to require Internet access.
-             "--ignore=unit/botocore/test_awsrequest.py")
+             "--ignore=unit/botocore/test_awsrequest.py"
+             ;; Flaky, something to do with PATH disappearing from os.environ?
+             ;; Passes when run on its own, so maybe something else is
+             ;; modifying this during the test run.
+             "--ignore=unit/customizations/emr/test_emr_utils.py")
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'unpack 'ignore-deprecations
-- 
2.49.0





This bug report was last modified 5 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.