summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Milosavljevic <[email protected]>2025-01-07 02:25:41 +0100
committerDanny Milosavljevic <[email protected]>2025-01-07 02:25:41 +0100
commit329daafcc3c798dd180fd98ff757452e3e016235 (patch)
tree47f3eedb99be8b2867dd2201a536ac1d65fbc4d3
parent5d9e839fce98c49a8db47422a050ce03d799fe02 (diff)
gnu: python-pint: Fix build.
* gnu/packages/python-xyz.scm (python-pint)[arguments]<#:test-flags>: Modify. Change-Id: I6f7fc7c21a40325fc7f3b6536ae58e418337d4de
-rw-r--r--gnu/packages/python-xyz.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e867120e32..d4893e9b53 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1864,6 +1864,9 @@ Markdown. All extensions are found under the module namespace of pymdownx.")
"-k" (string-append
;; This test tries to write to $HOME/.cache/pint.
"not test_auto"
+ ;; Our pytest can't match RuntimeWarning for some reason.
+ ;; Note: [email protected] would work around this, too.
+ " and not test_nonnumeric_magnitudes"
;; Fails with "Group USCSLengthInternational already
;; present in registry"
" and not test_load_definitions_stage_2"))))