guix-patches
[Top][All Lists]
Advanced

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

[bug#62906] [PATCH] gnu: python-pytest-trio: Disable tests.


From: jgart
Subject: [bug#62906] [PATCH] gnu: python-pytest-trio: Disable tests.
Date: Mon, 17 Apr 2023 10:27:44 -0500

See the following GitHub issue on the project page:
https://github.com/python-trio/pytest-trio/issues/122

* gnu/packages/python-check.scm (python-pytest-trio)[arguments]: Disable
broken tests.
---

Hi,

pytest-trio currently causes guix pull to fail because the tests are broken.

I have diabled the tests and linked the associated issue from the project page 
detailing more.

all best,

jgart

 gnu/packages/python-check.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 1046602800..613fa23a99 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1095,7 +1095,9 @@ (define-public python-pytest-trio
         (base32 "0c8cqf9by2884riksrqymqfp2g1d2d798a2zalcw9hmf34c786y0"))))
     (build-system python-build-system)
     (arguments
-     `(#:phases
+     `(;; https://github.com/python-trio/pytest-trio/issues/122
+       #:tests? #f ; Tests are currently broken.
+       #:phases
        (modify-phases %standard-phases
          (replace 'check
            (lambda* (#:key tests? inputs outputs #:allow-other-keys)
-- 
2.39.2






reply via email to

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