From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: Re: [PATCH 03/16] gnu: Add python-promise. Date: Sun, 11 Sep 2016 21:41:10 +0200 Message-ID: References: <20160911185857.2123-1-efraim@flashner.co.il> <20160911185857.2123-4-efraim@flashner.co.il> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58366) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjAdu-0003bi-2L for guix-devel@gnu.org; Sun, 11 Sep 2016 15:42:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bjAdp-00062j-U2 for guix-devel@gnu.org; Sun, 11 Sep 2016 15:42:17 -0400 Received: from mail-yb0-f177.google.com ([209.85.213.177]:34649) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bjAdo-00062D-Mj for guix-devel@gnu.org; Sun, 11 Sep 2016 15:42:13 -0400 Received: by mail-yb0-f177.google.com with SMTP id x93so43785913ybh.1 for ; Sun, 11 Sep 2016 12:42:11 -0700 (PDT) In-Reply-To: <20160911185857.2123-4-efraim@flashner.co.il> 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: Efraim Flashner Cc: guix-devel > +(define-public python2-promise > + (let ((promise (package-with-python2 > + (strip-python2-variant python-promise)))) > + (package (inherit promise) > + (arguments (substitute-keyword-arguments (package-arguments promise) > + ((#:tests? _) #t))) I've seen this in a few of your patches. Why do tests fail with python but not with python-2?