From cf5bd827cf74a313a8d56c38b125e25a60632b4f Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 10 Nov 2024 15:25:59 +0000 Subject: gnu: python-pytest: Update to 8.3.3. * gnu/packages/check.scm (python-pytest): Update to 8.3.3. [build-system]: Swap to pyproject-build-system. [arguments]: Use default 'check phase and remove 'prepend-version phase. : Disable some tests requiring python-pygments adding which introduces cycle. [propagated-inputs]: Remove python-pluggy; add python-exceptiongroup and python-pluggy-next. [native-inputs]: Add python-setuptools and python-wheel. * gnu/packages/check.scm (python-pytest-bootstrap) [native-inputs]: Add python-setuptools and python-wheel. * gnu/packages/patches/pytest-fix-unstrable-exception-test.patch: Remove file. * gnu/local.mk: Deregister patch. Change-Id: Ie8825ea1f788bbae40aefa467b6a94b8c4210cbc --- .../pytest-fix-unstrable-exception-test.patch | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 gnu/packages/patches/pytest-fix-unstrable-exception-test.patch (limited to 'gnu/packages/patches/pytest-fix-unstrable-exception-test.patch') diff --git a/gnu/packages/patches/pytest-fix-unstrable-exception-test.patch b/gnu/packages/patches/pytest-fix-unstrable-exception-test.patch deleted file mode 100644 index 4d77786b77..0000000000 --- a/gnu/packages/patches/pytest-fix-unstrable-exception-test.patch +++ /dev/null @@ -1,34 +0,0 @@ -From b55e264a675f7621b8351e227b93742f19e01c7d Mon Sep 17 00:00:00 2001 -From: Daniel Valenzuela -Date: Wed, 9 Nov 2022 19:43:10 -0300 -Subject: [PATCH] Fix test_raising_repr test - -Closes #10473 - -Python <3.11 versions depend on `exceptiongroup>=1.0.0rc8`, and they released version `1.0.1` -6 days ago (2022/11/03) that as a side-effect changed the output of exceptions. ---- - testing/test_assertion.py | 10 +--------- - 1 file changed, 1 insertion(+), 9 deletions(-) - -diff --git a/testing/test_assertion.py b/testing/test_assertion.py -index d8844f2e41..7574592210 100644 ---- a/testing/test_assertion.py -+++ b/testing/test_assertion.py -@@ -1664,15 +1664,7 @@ def test_raising_repr(): - """ - ) - result = pytester.runpytest() -- if sys.version_info >= (3, 11): -- # python 3.11 has native support for un-str-able exceptions -- result.stdout.fnmatch_lines( -- ["E AssertionError: "] -- ) -- else: -- result.stdout.fnmatch_lines( -- ["E AssertionError: "] -- ) -+ result.stdout.fnmatch_lines(["E AssertionError: "]) - - - def test_issue_1944(pytester: Pytester) -> None: -- cgit v1.2.3