diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2025-03-04 21:43:00 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-03-05 12:57:44 +0200 |
commit | 02d45b04fa3ee9e4a6822ee222976a498ef2873d (patch) | |
tree | 9550b8e7230f995942e484e87b784ebd3b98846e | |
parent | af706726e7641cba9dbac82ce972f85d6b46fd11 (diff) | |
download | guix-02d45b04fa3ee9e4a6822ee222976a498ef2873d.tar.gz guix-02d45b04fa3ee9e4a6822ee222976a498ef2873d.zip |
gnu: python-uvicorn: Skip another test on riscv64-linux.
* gnu/packages/python-web.scm (python-uvicorn)[arguments]: When building
for riscv64-linux skip another test.
Change-Id: I470b45ae3dc80324aa1cd7f1fe37dce8b690be68
-rw-r--r-- | gnu/packages/python-web.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 53547fed84..ad02690b8d 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -7490,7 +7490,8 @@ and fairly speedy.") "--ignore=tests/supervisors/test_multiprocess.py" #$@(cond - ((target-aarch64?) + ((or (target-aarch64?) + (target-riscv64?)) '("-k not test_send_binary_data_to_server_bigger_than_default_on_websockets")) (#t '()))))) (native-inputs |