summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-05-19 22:41:18 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-05-19 22:41:46 +0100
commitaf3de2a2302512b79fdcbace693651e2ffca8dc7 (patch)
tree1b32c39297a13bfab7aac6b0d51b77c2d6d4f8b5
parent7d3d8418a40d6e208db4ef76078fc9464310c00f (diff)
gnu: python-loguru: Skip 2 tests on 32bit systems.
* gnu/packages/python-xyz.scm (python-loguru): [arguments] <test-flags>: Skip 2 tests on 32bit systems. Change-Id: I9496453aa0c19302498a3eee76f185837fd4636b
-rw-r--r--gnu/packages/python-xyz.scm12
1 files changed, 11 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ac53ec844c..15e3fa9669 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32018,7 +32018,17 @@ older versions of Python and so are packaged here.")
(sha256
(base32 "1ypx3dgdfi6fpr7mmg8bqg7bgbwaqrm13l9d50xmd8j2b7zb13bi"))))
(build-system pyproject-build-system)
- ;; tests: 1598 passed, 28 skipped
+ ;; tests: x86_64-linux 1598 passed, 28 skipped
+ ;; i686-linux 1562 passed, 28 skipped, 36 deselected
+ (arguments
+ (list
+ #:test-flags
+ #~(list #$@(if (target-64bit?)
+ '()
+ ;; OverflowError
+ '("--deselect=tests/test_datetime.py::test_formatting"
+ (string-append "--deselect=tests/test_datetime.py"
+ "::test_value_of_gmtoff_is_invalid"))))))
(native-inputs
(list python-flit-core
python-freezegun