From 43eed6aa4f2d39c1780029d8c457094bb5e127d8 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Tue, 19 May 2026 22:52:05 +0100 Subject: gnu: python-marshmallow: Skip one test on 32bit systems. * gnu/packages/python-xyz.scm (python-marshmallow): [arguments] : Skip 1 test on 32bit systems. [phases]{set-check-environment}: Remove phase. Change-Id: I3debc5e48d638b86eebce8682b8fc0a2e0510393 --- gnu/packages/python-xyz.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 15e3fa9669..0790da5ead 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25655,14 +25655,14 @@ hypermedia formats.") (build-system pyproject-build-system) (arguments (list - #:phases - #~(modify-phases %standard-phases - (add-before 'check 'set-check-environment - (lambda* (#:key inputs #:allow-other-keys) - (setenv "TZ" "UTC") - (setenv "TZDIR" - (search-input-directory inputs - "share/zoneinfo"))))))) + ;; tests: x86_64 1117 passed + ;; i686-linux 1116 passed, 1 deselected + #:test-flags + #~(list #$@(if (target-64bit?) + '() + ;; OverflowError + '((string-append "--deselect=tests/test_utils.py" + "::test_from_timestamp_with_overflow_value")))))) (native-inputs (list python-flit-core python-pytest -- cgit v1.3