Efraim Flashner <efr...@flashner.co.il> writes: > On Sun, 20 Dec 2015 14:43:47 +0100 > Ricardo Wurmus <ricardo.wur...@mdc-berlin.de> wrote: > >> Ah, so thats >> >> in both “load” and “each” modes. >> >> I read this unquoted and it didn’t make any sense at all. Maybe it’s >> sufficient to just quote the terms? Or if they are code keywords wrap >> them in “@code{...}”?
> From 29533e0bd8f50d3b7e46d3b3eabf090cfb1c87bd Mon Sep 17 00:00:00 2001 > From: Efraim Flashner <efr...@flashner.co.il> > 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 testing > and > -distributed testing in both load and each modes. It also supports coverage > -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 testing > and > +distributed testing in both @code{load} and @code{each} modes. It also > +supports coverage of subprocesses.") > (license license:expat))) Why has the indentation changed for all lines since ‘(build-system ...)’? The description is clearer now, thanks. ~~ Ricardo