From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: [PATCH 3/6] gnu: python-scripttest: Disable tests. Date: Sat, 2 Jul 2016 21:10:15 -0400 Message-ID: <1c0505995b5dfb9db825479ea2e8a0b6c7806a75.1467508169.git.leo@famulari.name> References: Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45683) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJVvl-0005tg-Sl for guix-devel@gnu.org; Sat, 02 Jul 2016 21:10:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bJVvh-0002MZ-Jz for guix-devel@gnu.org; Sat, 02 Jul 2016 21:10:40 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:50053) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJVve-0002KV-SM for guix-devel@gnu.org; Sat, 02 Jul 2016 21:10:37 -0400 Received: from localhost.localdomain (74-94-60-115-philadelphia.hfc.comcastbusiness.net [74.94.60.115]) by mail.messagingengine.com (Postfix) with ESMTPA id 469DBCC023 for ; Sat, 2 Jul 2016 21:10:23 -0400 (EDT) In-Reply-To: In-Reply-To: References: List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/python.scm (python-scripttest, python2-scripttest) [arguments]: Disable tests. [inputs]: Remove python-pytest. --- gnu/packages/python.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 3e71183..28984b0 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -1710,9 +1710,10 @@ result back.") (base32 "0f4w84k8ck82syys7yg9maz93mqzc8p5ymis941x034v44jzq74m")))) (build-system python-build-system) + (arguments + '(#:tests? #f)) ; Tests are not included in the PyPi release. (inputs - `(("python-setuptools" ,python-setuptools) - ("python-pytest" ,python-pytest))) + `(("python-setuptools" ,python-setuptools))) (home-page "http://pythonpaste.org/scripttest/") (synopsis "Python library to test command-line scripts") (description "Scripttest is a Python helper library for testing -- 2.9.0