From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 01/10] gnu: Add python-pytest-cov. Date: Wed, 30 Dec 2015 15:10:06 +0100 Message-ID: References: <1449153811-32039-1-git-send-email-efraim@flashner.co.il> <1449153811-32039-2-git-send-email-efraim@flashner.co.il> <87vb8fnp9l.fsf@mdc-berlin.de> <20151207212552.402adeda@debian-netbook> <20151217210212.0342f742@debian-netbook> <87bn9lkzfw.fsf@mdc-berlin.de> <20151227121459.597fcb8f@debian-netbook> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59190) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aEHSF-0007AK-Ef for guix-devel@gnu.org; Wed, 30 Dec 2015 09:10:20 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aEHSC-0000yH-5E for guix-devel@gnu.org; Wed, 30 Dec 2015 09:10:19 -0500 Received: from sinope.bbbm.mdc-berlin.de ([141.80.25.23]:33623) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aEHSB-0000wr-PX for guix-devel@gnu.org; Wed, 30 Dec 2015 09:10:16 -0500 In-Reply-To: <20151227121459.597fcb8f@debian-netbook> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Efraim Flashner Cc: guix-devel@gnu.org Efraim Flashner writes: > On Sun, 20 Dec 2015 14:43:47 +0100 > Ricardo Wurmus wrote: > >> Ah, so thats >>=20 >> in both =E2=80=9Cload=E2=80=9D and =E2=80=9Ceach=E2=80=9D modes. >>=20 >> I read this unquoted and it didn=E2=80=99t make any sense at all. May= be it=E2=80=99s >> sufficient to just quote the terms? Or if they are code keywords wrap >> them in =E2=80=9C@code{...}=E2=80=9D? > From 29533e0bd8f50d3b7e46d3b3eabf090cfb1c87bd Mon Sep 17 00:00:00 2001 > From: Efraim Flashner > Date: Sun, 27 Dec 2015 09:00:14 +0200 > Subject: [PATCH 8/9] gnu: python-pytest-cov: Clarify description. > * gnu/packages/python.scm (python-pytest-cov): Do it. > --- > gnu/packages/python.scm | 24 ++++++++++++------------ > 1 file changed, 12 insertions(+), 12 deletions(-) > diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm > index 6af2bce..50137bd 100644 > --- a/gnu/packages/python.scm > +++ b/gnu/packages/python.scm > @@ -1632,18 +1632,18 @@ and many external plugins.") > (sha256 > (base32 > "1lf9jsmhqk5nc4w3kzwglmdzjvmi7ajvrsnwv826j3bn0wzx8c92")))) > - (build-system python-build-system) > - (propagated-inputs > - `(("python-coverage" ,python-coverage) > - ("python-pytest" ,python-pytest))) > - (native-inputs > - `(("python-setuptools" ,python-setuptools))) > - (home-page "https://github.com/pytest-dev/pytest-cov") > - (synopsis "Pytest plugin for measuring coverage") > - (description > - "Pytest-cov produces coverage reports. It supports centralised tes= ting and > -distributed testing in both load and each modes. It also supports cov= erage > -of subprocesses.") > + (build-system python-build-system) > + (propagated-inputs > + `(("python-coverage" ,python-coverage) > + ("python-pytest" ,python-pytest))) > + (native-inputs > + `(("python-setuptools" ,python-setuptools))) > + (home-page "https://github.com/pytest-dev/pytest-cov") > + (synopsis "Pytest plugin for measuring coverage") > + (description > + "Pytest-cov produces coverage reports. It supports centralised t= esting and > +distributed testing in both @code{load} and @code{each} modes. It als= o > +supports coverage of subprocesses.") > (license license:expat))) Why has the indentation changed for all lines since =E2=80=98(build-syste= m ...)=E2=80=99? The description is clearer now, thanks. ~~ Ricardo