From: David Bremner Date: Sat, 23 May 2015 20:28:43 +0000 (+0200) Subject: Support running test suite using python3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5e1c9a6e41cbfef9581bc80111401c7adf57c263;p=notmuch-archives.git Support running test suite using python3 --- diff --git a/c8/0cbdbded1b990266b5554b56ffd75018426d6b b/c8/0cbdbded1b990266b5554b56ffd75018426d6b new file mode 100644 index 000000000..1bcc3be37 --- /dev/null +++ b/c8/0cbdbded1b990266b5554b56ffd75018426d6b @@ -0,0 +1,56 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by arlo.cworth.org (Postfix) with ESMTP id A20386DE14F2 + for ; Sat, 23 May 2015 13:29:59 -0700 (PDT) +X-Virus-Scanned: Debian amavisd-new at cworth.org +X-Spam-Flag: NO +X-Spam-Score: 0.287 +X-Spam-Level: +X-Spam-Status: No, score=0.287 tagged_above=-999 required=5 tests=[AWL=0.277, + T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] autolearn=disabled +Received: from arlo.cworth.org ([127.0.0.1]) + by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id B02RuOE6pIRt for ; + Sat, 23 May 2015 13:29:54 -0700 (PDT) +Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net + [87.98.215.224]) + by arlo.cworth.org (Postfix) with ESMTPS id 925036DE147C + for ; Sat, 23 May 2015 13:29:54 -0700 (PDT) +Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim + 4.80) (envelope-from ) + id 1YwG37-0002qM-FA + for notmuch@notmuchmail.org; Sat, 23 May 2015 20:29:37 +0000 +Received: (nullmailer pid 8752 invoked by uid 1000); Sat, 23 May 2015 + 20:28:59 -0000 +From: David Bremner +To: notmuch@notmuchmail.org +Subject: Support running test suite using python3 +Date: Sat, 23 May 2015 22:28:43 +0200 +Message-Id: <1432412927-8373-1-git-send-email-david@tethera.net> +X-Mailer: git-send-email 2.1.4 +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.18 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Sat, 23 May 2015 20:29:59 -0000 + +On systems where the default python is python2 (i.e. most of them), +there's not convenient way to try out the test suite with python3. +This series aims to make that easier by making + +% PYTHON=python3 ./configure + +propagate something useful to the test suite. + +The last patch is not strictly needed, but it helped me figure out +what was wrong when the python3 version of sphinx was not installed.