summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-11-10 15:37:13 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-12-13 20:19:09 +0000
commit8f36612d5b94616a7fbc3ae65b5cf331b2853e2c (patch)
tree6695dce459b2c226438b9295043a488b9e335a5a /gnu
parentcf5bd827cf74a313a8d56c38b125e25a60632b4f (diff)
gnu: Remove python-pytest-8.
* gnu/packages/check.scm (python-pytest-8): Set variable as deprecated. * gnu/packages/astronomy.scm (python-asdf) [native-inputs]: Remove python-pytest-8; add python-pytest. * gnu/packages/astronomy.scm (python-healpy) [native-inputs]: Remove python-pytest-8; add python-pytest. * gnu/packages/python-check.scm (python-pytest-cython) [propagated-inputs]: Remove python-pytest-8; add python-pytest. Change-Id: I89a6fbbc0152a6c2f0a9a22f8398a6bc4f9e86cb
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/astronomy.scm4
-rw-r--r--gnu/packages/check.scm30
-rw-r--r--gnu/packages/python-check.scm2
3 files changed, 3 insertions, 33 deletions
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index eb499522308..97b7a73b9c4 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1629,7 +1629,7 @@ Main features:
1629 python-psutil 1629 python-psutil
1630 ;; 3.3.0+ requries newer version of pytest, see 1630 ;; 3.3.0+ requries newer version of pytest, see
1631 ;; <https://github.com/asdf-format/asdf/issues/1804>. 1631 ;; <https://github.com/asdf-format/asdf/issues/1804>.
1632 python-pytest-8 1632 python-pytest
1633 python-pytest-doctestplus 1633 python-pytest-doctestplus
1634 python-pytest-remotedata 1634 python-pytest-remotedata
1635 python-pytest-xdist 1635 python-pytest-xdist
@@ -2673,7 +2673,7 @@ sensitivity or energy density
2673 (list nss-certs-for-test 2673 (list nss-certs-for-test
2674 pkg-config 2674 pkg-config
2675 python-cython-3 2675 python-cython-3
2676 python-pytest-8 2676 python-pytest
2677 python-pytest-astropy-header 2677 python-pytest-astropy-header
2678 python-pytest-cython 2678 python-pytest-cython
2679 ;python-pytest-doctestplus 2679 ;python-pytest-doctestplus
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index a5264a9e466..f1adfbb5584 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -1589,36 +1589,6 @@ and functions, detailed info on failing assert statements, modular fixtures,
1589and many external plugins.") 1589and many external plugins.")
1590 (license license:expat))) 1590 (license license:expat)))
1591 1591
1592(define-public python-pytest-8
1593 (package/inherit python-pytest
1594 (name "python-pytest")
1595 (version "8.2.2")
1596 (source
1597 (origin
1598 (method url-fetch)
1599 (uri (pypi-uri "pytest" version))
1600 (sha256
1601 (base32 "0xvr25qvmdh6z03jpgg24adhgqkvkal2g2v8vk63j6909q8bhjyy"))))
1602 (build-system pyproject-build-system)
1603 (arguments
1604 (list
1605 #:test-flags
1606 #~(list "-k" (string-append
1607 "not test_code_highlight_continuation"
1608 " and not test_code_highlight"
1609 " and not test_code_highlight_custom_theme"
1610 " and not test_code_highlight_invalid_theme"
1611 " and not test_code_highlight_invalid_theme_mode"
1612 " and not test_code_highlight_simple"
1613 " and not test_color_yes"
1614 " and not test_comparisons_handle_colors"
1615 " and not test_empty_NO_COLOR_and_FORCE_COLOR_ignored"
1616 " and not test_remove_dir_prefix"))))
1617 (propagated-inputs
1618 (modify-inputs (package-propagated-inputs python-pytest)
1619 (append python-exceptiongroup)
1620 (replace "python-pluggy" python-pluggy-next)))))
1621
1622(define-public python-pytest-next 1592(define-public python-pytest-next
1623 (package/inherit python-pytest 1593 (package/inherit python-pytest
1624 (name "python-pytest") 1594 (name "python-pytest")
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index e643806371c..6b558c66987 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -1967,7 +1967,7 @@ plain (undecoratored) native coroutine tests.")
1967 python-cython-3 1967 python-cython-3
1968 python-setuptools)) 1968 python-setuptools))
1969 (propagated-inputs 1969 (propagated-inputs
1970 (list python-pytest-8)) 1970 (list python-pytest))
1971 (home-page "https://github.com/lgpage/pytest-cython") 1971 (home-page "https://github.com/lgpage/pytest-cython")
1972 (synopsis "Cython extension modules testing plugin") 1972 (synopsis "Cython extension modules testing plugin")
1973 (description 1973 (description