guix-commits
[Top][All Lists]
Advanced

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

08/15: gnu: python-pytest-enabler: Don't set #:tests to #:true.


From: guix-commits
Subject: 08/15: gnu: python-pytest-enabler: Don't set #:tests to #:true.
Date: Sun, 9 Jul 2023 08:00:55 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 8a3b574b9c7ae6806247aefb22e6597c0ea4a8b7
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jul 9 10:29:59 2023 +0300

    gnu: python-pytest-enabler: Don't set #:tests to #:true.
    
    * gnu/packages/check.scm (python-pytest-enabler)[arguments]: Rewrite to
    strip the #:tests? argument from the inherited package.
---
 gnu/packages/check.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index df57a778fe..0b211f9421 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2334,9 +2334,9 @@ failures.")
   (package/inherit python-pytest-enabler-bootstrap
     (arguments
      (substitute-keyword-arguments
-         (package-arguments python-pytest-enabler-bootstrap)
-       ((#:tests? _ #f)
-        #t)
+       (strip-keyword-arguments
+         '(#:tests?)
+         (package-arguments python-pytest-enabler-bootstrap))
        ((#:phases phases #~%standard-phases)
         #~(modify-phases #$phases
             (replace 'check



reply via email to

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