From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: 01/01: gnu: python-pyopenssl: Disable tests. Date: Thu, 15 Dec 2016 18:49:19 -0500 Message-ID: <20161215234919.GA14722@jasmine> References: <20161214173803.7999.79849@vcs.savannah.gnu.org> <20161214173804.3FE492201BA@vcs.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39592) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cHfmB-0002Dm-Cd for guix-devel@gnu.org; Thu, 15 Dec 2016 18:49:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cHfm8-0006c0-0w for guix-devel@gnu.org; Thu, 15 Dec 2016 18:49:27 -0500 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:57591) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cHfm7-0006aN-El for guix-devel@gnu.org; Thu, 15 Dec 2016 18:49:23 -0500 Content-Disposition: inline In-Reply-To: <20161214173804.3FE492201BA@vcs.savannah.gnu.org> 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 On Wed, Dec 14, 2016 at 05:38:04PM +0000, Marius Bakke wrote: > mbakke pushed a commit to branch python-tests > in repository guix. > > commit 30e0229a1713e77dc0397dfb4ee6af4ac6a00443 > Author: Marius Bakke > Date: Wed Dec 14 18:34:48 2016 +0100 > > gnu: python-pyopenssl: Disable tests. > > * gnu/packages/python.scm (python-pyopenssl, python2-pyopenssl)[arguments]: > Set #:tests? #f. > [native-inputs]: Add python-pytest. > --- > gnu/packages/python.scm | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index cd6ed1c..ebe0194 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -6585,11 +6585,16 @@ message digests and key derivation functions.") > (base32 > "0vji4yrfshs15xpczbhzhasnjrwcarsqg87n98ixnyafnyxs6ybp")))) > (build-system python-build-system) > + (arguments > + ;; FIXME: Some tests fail with "NameError: name 'long' is not defined". > + '(#:tests? #f)) Do you think this indicates a real problem? Or is the issue limited to the tests?