guix-commits
[Top][All Lists]
Advanced

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

12/27: gnu: python-pytest: Use G-expression.


From: guix-commits
Subject: 12/27: gnu: python-pytest: Use G-expression.
Date: Fri, 9 Sep 2022 11:08:14 -0400 (EDT)

mbakke pushed a commit to branch core-updates
in repository guix.

commit 5f40f663f4b19ec2081def6813f499b54ea983bc
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Mon Aug 15 21:39:25 2022 +0200

    gnu: python-pytest: Use G-expression.
    
    * gnu/packages/check.scm (python-pytest)[arguments]: Use gexp.  While at it,
    refer to THIS-PACKAGE instead of the version field.
---
 gnu/packages/check.scm | 48 +++++++++++++++++++++++++-----------------------
 1 file changed, 25 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 0bce93fc79..7d131e55b5 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -984,27 +984,29 @@ standard library.")
          "0f8c31v5r2kgjixvy267n0nhc4xsy65g3n9lz1i1377z5pn5ydjg"))))
     (build-system python-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-before 'build 'pretend-version
-           ;; The version string is usually derived via setuptools-scm, but
-           ;; without the git metadata available, the version string is set to
-           ;; '0.0.0'.
-           (lambda _
-             (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" ,version)))
-         (replace 'check
-           (lambda* (#:key (tests? #t) #:allow-other-keys)
-             (setenv "TERM" "dumb")     ;attempt disabling markup tests
-             (if tests?
-                 (invoke "pytest" "-vv" "-k"
-                         (string-append
-                          ;; This test involves the /usr directory, and fails.
-                          " not test_argcomplete"
-                          ;; These test do not honor the isatty detection and
-                          ;; fail.
-                          " and not test_code_highlight"
-                          " and not test_color_yes"))
-                 (format #t "test suite not run~%")))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'build 'pretend-version
+            ;; The version string is usually derived via setuptools-scm, but
+            ;; without the git metadata available, the version string is set to
+            ;; '0.0.0'.
+            (lambda _
+              (setenv "SETUPTOOLS_SCM_PRETEND_VERSION"
+                      #$(package-version this-package))))
+          (replace 'check
+            (lambda* (#:key tests? #:allow-other-keys)
+              (setenv "TERM" "dumb")    ;attempt disabling markup tests
+              (if tests?
+                  (invoke "pytest" "-vv" "-k"
+                          (string-append
+                           ;; This test involves the /usr directory, and fails.
+                           " not test_argcomplete"
+                           ;; These test do not honor the isatty detection and
+                           ;; fail.
+                           " and not test_code_highlight"
+                           " and not test_color_yes"))
+                  (format #t "test suite not run~%")))))))
     (propagated-inputs
      (list python-attrs-bootstrap
            python-iniconfig
@@ -1013,8 +1015,8 @@ standard library.")
            python-py
            python-tomli))
     (native-inputs
-     (list ;; Tests need the "regular" bash since 'bash-final' lacks `compgen`.
-           bash
+     ;; Tests need the "regular" bash since 'bash-final' lacks `compgen`.
+     (list bash
            python-hypothesis
            python-nose
            python-pytest-bootstrap



reply via email to

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