gnu: python-pytest-doctestplus: Update to 1.2.0.

* gnu/packages/python-check.scm (python-pytest-doctestplus): Update to 1.2.0.
[arguments] <#:test-flags>: Disable one more failing test.
[home-page]: Update accordingly with lint warning.

Change-Id: I353a671741cf887c348d627d9e071e3fedcc4edc
This commit is contained in:
Sharlatan Hellseher 2024-03-05 22:10:54 +00:00
parent a2894745a5
commit b548c6b1d5
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -605,26 +605,29 @@ running the tests.")
(define-public python-pytest-doctestplus (define-public python-pytest-doctestplus
(package (package
(name "python-pytest-doctestplus") (name "python-pytest-doctestplus")
(version "1.0.0") (version "1.2.0")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "pytest-doctestplus" version)) (uri (pypi-uri "pytest-doctestplus" version))
(sha256 (sha256
(base32 "17ylfnrcvvp6sd13bfj40jl40paqmjsbywysszb3xqgdr86l8l7n")))) (base32 "0cmrkgpib869kpy8h8hfkg20w16lakkmbkw8cxdywpmf5wx7dbf5"))))
(build-system pyproject-build-system) (build-system pyproject-build-system)
(arguments (arguments
(list #:test-flags (list #:test-flags
#~(list "-k" (string-append #~(list "-k" (string-append
;; Tests requiring network access.
"not test_remote_data_url" "not test_remote_data_url"
" and not test_remote_data_float_cmp" " and not test_remote_data_float_cmp"
" and not test_remote_data_ignore_whitespace" " and not test_remote_data_ignore_whitespace"
" and not test_remote_data_ellipsis" " and not test_remote_data_ellipsis"
" and not test_remote_data_requires" " and not test_remote_data_requires"
" and not test_remote_data_ignore_warnings")))) " and not test_remote_data_ignore_warnings"
;; Requiring git available.
" and not test_generate_diff_basic"))))
(native-inputs (native-inputs
(list python-numpy python-pytest python-setuptools-scm)) (list python-numpy python-pytest python-setuptools-scm))
(home-page "https://github.com/astropy/pytest-doctestplus") (home-page "https://github.com/scientific-python/pytest-doctestplus")
(synopsis "Pytest plugin with advanced doctest features") (synopsis "Pytest plugin with advanced doctest features")
(description (description
"This package contains a plugin for the Pytest framework that provides "This package contains a plugin for the Pytest framework that provides