[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
18/23: gnu: python-diff-cover: Update to 9.2.0.
From: |
guix-commits |
Subject: |
18/23: gnu: python-diff-cover: Update to 9.2.0. |
Date: |
Sun, 1 Dec 2024 19:48:44 -0500 (EST) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit 04cfee7d0369f7f4d65867ee658104d9d9aa1815
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Dec 1 22:05:48 2024 +0000
gnu: python-diff-cover: Update to 9.2.0.
* gnu/packages/python-xyz.scm (python-diff-cover): Update to 9.2.0.
Adjust style.
[arguments]<test-flags>: Ignore just one test.
[native-inputs]: Remove python-flake8 and python-pytest-flake8; add
python-pycodestyle, python-pyflakes, and python-pytest-datadir.
[description]: Start from a new line, fix fill column.
Change-Id: I01de4b79a8f3ccba8ca943907ddc77c9b8ca26e8
---
gnu/packages/python-xyz.scm | 44 ++++++++++++++++++++++----------------------
1 file changed, 22 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5cf61c2ce9..6a8a757621 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25353,21 +25353,27 @@ which make common patterns shorter and easier.")
(define-public python-diff-cover
(package
(name "python-diff-cover")
- (version "7.5.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "diff_cover" version))
- (sha256
- (base32
- "1z7bxnij2sqsiz9313nwcak7nshakpq4b6c05v13hkqyhd505cx4"))))
+ (version "9.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "diff_cover" version))
+ (sha256
+ (base32 "0dms5f3axwkjpcck4mlglfn0pga5nmskyc7ahyg8yrxvxd9v7845"))))
(build-system pyproject-build-system)
(arguments
(list
#:test-flags
- ;; missing fixture 'datadir'.
- '(list "--ignore=tests/test_clover_violations_reporter.py"
- ;; Difference in line breaks
- "-k" "not test_html_with_external_css")))
+ ;; Dropp check of flake8 in tests.
+ #~(list "-k" "not test_file_does_not_exist")))
+ (native-inputs
+ (list python-pycodestyle
+ python-poetry-core
+ python-pyflakes
+ python-pylint
+ python-pytest
+ python-pytest-datadir
+ python-pytest-mock))
(propagated-inputs
(list python-chardet
python-jinja2
@@ -25375,19 +25381,13 @@ which make common patterns shorter and easier.")
python-pygments
python-setuptools ; For pkg_resources.
python-tomli))
- (native-inputs
- (list python-flake8
- python-poetry-core
- python-pylint
- python-pytest
- python-pytest-flake8
- python-pytest-mock))
(home-page "https://github.com/Bachmann1234/diff-cover")
(synopsis "Run coverage and linting reports on diffs")
- (description "Automatically find diff lines that need test coverage. It
-also finds diff lines that have violations (according to tools such as
-pycodestyle, pyflakes, flake8, or pylint). This is used as a code quality
-metric during code reviews.")
+ (description
+ "Automatically find diff lines that need test coverage. It also finds
+diff lines that have violations (according to tools such as pycodestyle,
+pyflakes, flake8, or pylint). This is used as a code quality metric during
+code reviews.")
(license license:asl2.0)))
(define-public python-diff-match-patch
- 07/23: gnu: python-flake8-pie: Update to 24.9.0., (continued)
- 07/23: gnu: python-flake8-pie: Update to 24.9.0., guix-commits, 2024/12/01
- 04/23: gnu: python-flake8-implicit-str-concat: Update to 0.5.0., guix-commits, 2024/12/01
- 06/23: gnu: python-flake8-pyi: Update to 24.9.0., guix-commits, 2024/12/01
- 11/23: gnu: python-sphinx-5: Adjust inputs., guix-commits, 2024/12/01
- 01/23: gnu: python-stdio-mgr: Fix build., guix-commits, 2024/12/01
- 10/23: gnu: python-sphinx: Adjust inputs., guix-commits, 2024/12/01
- 13/23: gnu: python-py-partiql-parser: Update to 0.5.6., guix-commits, 2024/12/01
- 08/23: gnu: python-flake8-quotes: Update to 3.4.0., guix-commits, 2024/12/01
- 15/23: gnu: python-utils: Update to 3.9.1., guix-commits, 2024/12/01
- 17/23: gnu: python-codespell: Update to 2.3.0., guix-commits, 2024/12/01
- 18/23: gnu: python-diff-cover: Update to 9.2.0.,
guix-commits <=
- 19/23: gnu: python-marshmallow: Update to 3.22.0., guix-commits, 2024/12/01
- 20/23: gnu: python-faker: Update to 33.1.0., guix-commits, 2024/12/01
- 14/23: gnu: python-pep8-naming: Update to 0.14.1., guix-commits, 2024/12/01
- 09/23: gnu: python-flake8-isort: Update to 6.1.1., guix-commits, 2024/12/01
- 05/23: gnu: python-flake8-print: Update to 5.0.0., guix-commits, 2024/12/01
- 02/23: gnu: python-termcolor: Update to 2.5.0., guix-commits, 2024/12/01
- 16/23: gnu: python-progressbar2: Update to 4.5.0., guix-commits, 2024/12/01
- 12/23: gnu: python-validators: Update to 0.34.0., guix-commits, 2024/12/01
- 21/23: gnu: python-marshmallow-jsonapi: Use pyproject-build-system., guix-commits, 2024/12/01
- 22/23: gnu: python-arpeggio: Update to 2.0.2., guix-commits, 2024/12/01