summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Lirzin <mthl@gnu.org>2016-03-23 23:36:21 +0100
committerMathieu Lirzin <mthl@gnu.org>2016-03-28 15:31:41 +0200
commitc99edafe3b9b684fb7b1ac8330d1c57d7afd50cf (patch)
treeffcef992dcd1b87566773c824dab1eb2ce0ab5f7
parentb65703c03e43e35d9f2bfd1ae2b0a858b47177f7 (diff)
tests: Silence tar.origin/wip-check
* tests/pypi.scm ("pypi->guix-package"): Remove verbose option when invoking tar to avoid polluting standard output.
-rw-r--r--tests/pypi.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/pypi.scm b/tests/pypi.scm
index e463467c41..c04318bcef 100644
--- a/tests/pypi.scm
+++ b/tests/pypi.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 David Thompson <davet@gnu.org>
+;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -73,7 +74,7 @@ baz > 13.37")
(with-output-to-file "foo-1.0.0/requirements.txt"
(lambda ()
(display test-requirements)))
- (system* "tar" "czvf" file-name "foo-1.0.0/")
+ (system* "tar" "czf" 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))))