andreas pushed a commit to branch python-team
in repository guix.
commit fcc266cf251b81ea8865d99b49069d060719423b
Author: Nicolas Graves <[email protected]>
AuthorDate: Mon Mar 10 03:16:10 2025 +0100
gnu: python-h2: Fix test-flags.
* gnu/packages/python-web.scm (python-h2)[arguments]{test-flags}:
Fix quoting.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-web.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 599918a054..5ef7972365 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -2486,9 +2486,9 @@ and that could be anything you want.")
(string-join
(list "not test_remotesettingschanged_repr"
;; This test exceededs the Hypothesis deadline.
- ,@(if (target-riscv64?)
- `("test_changing_max_frame_size")
- '())
+ #$@(if (target-riscv64?)
+ #~("test_changing_max_frame_size")
+ #~())
"test_streamreset_repr"
"test_settingsacknowledged_repr"
"test_connectionterminated_repr[None-None]"