mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-pyopenssl: Skip TestDTLS::test_timeout.
With the changes currently on the python-team branch, this seems to fail at least on aarch64-linux, presumably due to faketime being used. * gnu/packages/python-crypto.scm (python-pyopenssl)[arguments]: Skip TestDTLS::test_timeout. Change-Id: Ifca6dc323141219a01b9aff7baad8c712ac56b02
This commit is contained in:
parent
3f8bd3b983
commit
51bd111732
1 changed files with 7 additions and 1 deletions
|
@ -629,7 +629,13 @@ ciphers, message digests and key derivation functions.")
|
|||
;; PyOpenSSL runs tests against a certificate with a fixed
|
||||
;; expiry time. To ensure successful builds in the future,
|
||||
;; set the time to roughly the release date.
|
||||
(invoke "faketime" "2024-07-20" "pytest" "-vv" "-k"
|
||||
(invoke "faketime" "2024-07-20" "pytest" "-vv"
|
||||
"--deselect"
|
||||
;; This test seems to fail when using faketime, at
|
||||
;; least on aarch64-linux with OSError: [Errno 22]
|
||||
;; Invalid argument
|
||||
"tests/test_ssl.py::TestDTLS::test_timeout"
|
||||
"-k"
|
||||
;; This test tries to look up certificates from
|
||||
;; the compiled-in default path in OpenSSL, which
|
||||
;; does not exist in the build environment.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue