guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 2721d7c503b68f096acffcb937d2882b8030eb1e
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Jan 18 16:11:03 2026 +0100
gnu: python-syrupy: Fix tests.
* gnu/packages/python-check.scm (python-syrupy)
[arguments]<#:test-backend>: Drop it.
<#:test-flags>: Ignore expected failing test.
[native-inputs]: Drop python-invoke.
Change-Id: Ie3e92293d7bd96aa7edbf81b577c9413bd988dfd
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-check.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 3cb936cdd9..fcabf01fb7 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -4722,11 +4722,12 @@ provided for the main Python test runners.")
(base32 "1ysm42an2pf4ppd1i5yzh11bq1rfydhg6rmmh5v91gcixpvi872d"))))
(build-system pyproject-build-system)
(arguments
- (list #:test-backend #~'custom
- #:test-flags #~(list "-m" "invoke" "test")))
+ (list
+ #:test-flags
+ ;; XXX: This test is incompatible with running with xdist.
+ #~(list "-k" "not test_update_failure_shows_snapshot_diff[xdist_two]")))
(native-inputs
- (list python-invoke
- python-poetry-core
+ (list python-poetry-core
python-pytest-bootstrap
python-pytest-xdist
python-setuptools-scm))