guix-commits
[Top][All Lists]
Advanced

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

02/12: tests: pypi: Mute the output of tar.


From: guix-commits
Subject: 02/12: tests: pypi: Mute the output of tar.
Date: Mon, 1 Jul 2019 21:43:02 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit a853acebe1ccdba51ae509cd8a838a954c7c8bd2
Author: Maxim Cournoyer <address@hidden>
Date:   Mon Jun 10 12:20:08 2019 +0900

    tests: pypi: Mute the output of tar.
    
    The output of tar when creating archives for the purpose of tests is not
    useful, so we mute it.
    
    * tests/pypi.scm ("pypi->guix-package"): Mute the output of tar.
    ("pypi->guix-package, wheels"): Likewise.
---
 tests/pypi.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/tests/pypi.scm b/tests/pypi.scm
index a0271ff..6df6907 100644
--- a/tests/pypi.scm
+++ b/tests/pypi.scm
@@ -112,7 +112,8 @@ baz > 13.37
                   (with-output-to-file "foo-1.0.0/foo.egg-info/requires.txt"
                     (lambda ()
                       (display test-requires.txt)))
-                  (system* "tar" "czvf" file-name "foo-1.0.0/")
+                  (parameterize ((current-output-port (%make-void-port "rw+")))
+                    (system* "tar" "czvf" file-name "foo-1.0.0/"))
                   (delete-file-recursively "foo-1.0.0")
                   (set! test-source-hash
                     (call-with-input-file file-name port-sha256))))
@@ -163,7 +164,8 @@ baz > 13.37
                 (with-output-to-file "foo-1.0.0/foo.egg-info/requires.txt"
                    (lambda ()
                      (display test-requires.txt)))
-                 (system* "tar" "czvf" file-name "foo-1.0.0/")
+                (parameterize ((current-output-port (%make-void-port "rw+")))
+                  (system* "tar" "czvf" file-name "foo-1.0.0/"))
                  (delete-file-recursively "foo-1.0.0")
                  (set! test-source-hash
                        (call-with-input-file file-name port-sha256))))



reply via email to

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