diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-25 10:23:28 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-25 12:21:04 +0000 |
commit | d1705ff0452624f4404987414cdd9645ed60c097 (patch) | |
tree | a85543e265ebb970f50ddf0f0864184dab033043 | |
parent | 01713f7aefa96281759d954070e0af92729302cb (diff) | |
download | guix-d1705ff0452624f4404987414cdd9645ed60c097.tar.gz guix-d1705ff0452624f4404987414cdd9645ed60c097.zip |
gnu: python-apache-libcloud: Disable tests.
* gnu/packages/python-xyz.scm (python-apache-libcloud) [arguments]
<tests?>: Tests require additional set up, disable for now.
Change-Id: I11648432145553ee20cf16db57a12c5fdbf65a99
-rw-r--r-- | gnu/packages/python-xyz.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9a99f6319e..a4d95fe76b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27388,7 +27388,8 @@ web frameworks.") "1b28j265kvibgxrgxx0gwfm6cmv252c8ph1j2vb0cpms8ph5if5v")))) (build-system python-build-system) (arguments - '(#:phases + '(#:tests? #f ; XXX: all tests fail requiring additional credentials + #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-ssh (lambda* (#:key inputs #:allow-other-keys) |