mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-websockets: Fix test suite on riscv64-linux.
* gnu/packages/python-web.scm (python-websockets)[arguments]: When building for riscv64-linux use an even longer test timeout. Change-Id: I83390a5e5e8d9e1ab6514841feca8e5066d6c80d
This commit is contained in:
parent
c991c49f09
commit
feba33d2c1
1 changed files with 5 additions and 1 deletions
|
@ -7974,7 +7974,11 @@ files.")
|
|||
#~(modify-phases %standard-phases
|
||||
(add-before 'check 'extend-test-timeout
|
||||
(lambda _
|
||||
(setenv "WEBSOCKETS_TESTS_TIMEOUT_FACTOR" "10"))))))
|
||||
;; Some architectures need an even longer timeout. Make it
|
||||
;; long enough that it should never fail due to timeout.
|
||||
#$@(if (target-riscv64?)
|
||||
#~((setenv "WEBSOCKETS_TESTS_TIMEOUT_FACTOR" "100"))
|
||||
#~((setenv "WEBSOCKETS_TESTS_TIMEOUT_FACTOR" "10"))))))))
|
||||
(native-inputs
|
||||
(list python-setuptools
|
||||
python-wheel))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue