summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-05-19 22:52:05 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-19 22:52:12 +0100
commit43eed6aa4f2d39c1780029d8c457094bb5e127d8 (patch)
treec739e72501c93b67e5a4012df470424a0346975a
parentaf3de2a2302512b79fdcbace693651e2ffca8dc7 (diff)
gnu: python-marshmallow: Skip one test on 32bit systems.
* gnu/packages/python-xyz.scm (python-marshmallow): [arguments] <test-flags>: Skip 1 test on 32bit systems. [phases]{set-check-environment}: Remove phase. Change-Id: I3debc5e48d638b86eebce8682b8fc0a2e0510393
-rw-r--r--gnu/packages/python-xyz.scm16
1 files 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