guix-commits
[Top][All Lists]
Advanced

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

01/06: gnu: ranger: More test tweaks.


From: Tobias Geerinckx-Rice
Subject: 01/06: gnu: ranger: More test tweaks.
Date: Wed, 10 Oct 2018 17:50:50 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 43c97cceae055fc59ca14ddc5b3475d66f98de37
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Wed Oct 10 22:28:40 2018 +0200

    gnu: ranger: More test tweaks.
    
    There's no functional difference between 'make test_pytest' and running
    'py.test' directly, but there may be in future.
    
    This follows up on commit 14173b3c6765bd8fcb2b12ea28fc27226645c7e1.
    
    * gnu/packages/disk.scm (ranger)[arguments]: Use #:test-target to run
    the (same) tests through 'make'.
    [native-inputs]: Remove left-over python-flake8 and python-pylint.
---
 gnu/packages/disk.scm | 20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm
index d88dbc8..2158da6 100644
--- a/gnu/packages/disk.scm
+++ b/gnu/packages/disk.scm
@@ -528,13 +528,15 @@ Duperemove can also take input from the @command{fdupes} 
program.")
     (build-system python-build-system)
     (inputs
      `(("w3m" ,w3m)))
-    (native-inputs                      ;for tests
-     `(("python-flake8" ,python-flake8)
-       ("python-pylint" ,python-pylint)
-       ("python-pytest" ,python-pytest)
-       ("which" ,which)))
+    (native-inputs
+     `(("which" ,which)
+
+       ;; For tests.
+       ("python-pytest" ,python-pytest)))
     (arguments
-     '(#:phases
+     '( ;; The 'test' target runs developer tools like pylint, which fail.
+       #:test-target "test_pytest"
+       #:phases
        (modify-phases %standard-phases
          (add-after 'configure 'wrap-program
            ;; Tell 'ranger' where 'w3mimgdisplay' is.
@@ -548,9 +550,9 @@ Duperemove can also take input from the @command{fdupes} 
program.")
                  `("W3MIMGDISPLAY_PATH" ":" prefix (,w3mimgdisplay)))
                #t)))
          (replace 'check
-           ;; Running 'make test' simply prints 'Ran 0 tests in 0.000s'.
-           (lambda _
-             (invoke "py.test" "tests"))))))
+           ;; The default check phase simply prints 'Ran 0 tests in 0.000s'.
+           (lambda* (#:key test-target #:allow-other-keys)
+             (invoke "make" test-target))))))
     (home-page "https://ranger.github.io/";)
     (synopsis "Console file manager")
     (description "ranger is a console file manager with Vi key bindings.  It



reply via email to

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