summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2026-05-19 07:28:15 +0300
committerEfraim Flashner <efraim@flashner.co.il>2026-05-19 07:29:51 +0300
commitb1280ba1a4cafb30ba2544fd85de5665b72db27b (patch)
tree5bfcff0ecc290e2fd125a239376e98deafe804b9
parentdc341b11a3b8b3289cc283b1315a59c4fa0e7d0d (diff)
gnu: python-hypothesis: Skip a test on riscv64-linux.
* gnu/packages/check.scm (python-hypothesis)[arguments]: Add a test to the test-flags to skip when building for riscv64-linux. Change-Id: Ic6c9ff752212d11a20d4821be30e90912e7fc696
-rw-r--r--gnu/packages/check.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 8d8e29150b..776c58b170 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2695,7 +2695,11 @@ failures and errors instantly.")
"test_is_not_identity"
"test_resolves_builtin_types[object]"
"test_resolves_forwardrefs_to_builtin_types[object]"
- "test_timezone_lookup[tzinfo]")
+ "test_timezone_lookup[tzinfo]"
+ ;; hypothesis.errors.FailedHealthCheck: Input generation is slow
+ #$@(if (target-riscv64?)
+ '("test_can_run_with_no_db")
+ '()))
" and not "))
#:phases
#~(modify-phases %standard-phases