From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: Re: [PATCH 4/5] import: pypi: Compute test requirements when reading requirements files. Date: Sat, 23 Jul 2016 16:48:40 +0200 Message-ID: References: <1468682605-12622-1-git-send-email-tipecaml@gmail.com> <1468682605-12622-5-git-send-email-tipecaml@gmail.com> <87d1m5pdhe.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49334) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bQyEQ-0007tw-7m for guix-devel@gnu.org; Sat, 23 Jul 2016 10:48:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bQyEN-0003Vq-3k for guix-devel@gnu.org; Sat, 23 Jul 2016 10:48:46 -0400 In-Reply-To: <87d1m5pdhe.fsf@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: =?UTF-8?Q?Ludovic_Court=c3=a8s?= Cc: guix-devel@gnu.org On 07/22/2016 11:30 PM, Ludovic Courtès wrote: > This seems to suggest that this could be factorized somehow. Maybe > unpack once and read the two files at once? The problem is that both files might not be there, and unzip will return a non-zero exit code if any of them is missing, so it seems easier to just run unzip twice. WDYT? Cyril.