diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-02-24 21:17:36 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-02-24 21:18:18 +0100 |
commit | 5a6f60ab451a4271ed48cf5e0e2b07990c761deb (patch) | |
tree | a34ff43312c97609007bca8c7cd668db040cf4bf | |
parent | e2bdba585a902a7408f048a74110aa91fc4fcbe1 (diff) | |
download | guix-5a6f60ab451a4271ed48cf5e0e2b07990c761deb.tar.gz guix-5a6f60ab451a4271ed48cf5e0e2b07990c761deb.zip |
gnu: python-uvicorn: Conditionally skip additional test.
This test fails on aarch64-linux.
* gnu/packages/python-web.scm (python-uvicorn)[arguments]: Skip one additional
test on aarch64-linux.
Change-Id: Ic7b36e199242473957a8e0e71b8cb6d5d3d38045
-rw-r--r-- | gnu/packages/python-web.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 3430997abc..02ca2bea99 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -7431,7 +7431,12 @@ and fairly speedy.") ;; <uvicorn.supervisors.multiprocess.Process object at ;; 0x7ffff39b6110>.is_alive. ;; Maybe this <https://github.com/encode/uvicorn/issues/2466>. - "--ignore=tests/supervisors/test_multiprocess.py"))) + "--ignore=tests/supervisors/test_multiprocess.py" + + #$@(cond + ((target-aarch64?) + '("-k not test_send_binary_data_to_server_bigger_than_default_on_websockets")) + (#t '()))))) (native-inputs (list nss-certs-for-test python-a2wsgi |