pyopenssl: skip test that fails on i686
Found in https://github.com/NixOS/nixpkgs/pull/105454#issuecomment-743973848 Upstream issue https://github.com/pyca/pyopenssl/issues/974
This commit is contained in:
parent
d094f26f32
commit
40b1f0d473
1 changed files with 3 additions and 0 deletions
|
@ -54,6 +54,9 @@ let
|
|||
optionals (hasPrefix "libressl" openssl.meta.name) failingLibresslTests
|
||||
) ++ (
|
||||
optionals (versionAtLeast (getVersion openssl.name) "1.1") failingOpenSSL_1_1Tests
|
||||
) ++ (
|
||||
# https://github.com/pyca/pyopenssl/issues/974
|
||||
optionals stdenv.isi686 [ "test_verify_with_time" ]
|
||||
);
|
||||
|
||||
# Compose the final string expression, including the "-k" and the single quotes.
|
||||
|
|
Loading…
Reference in a new issue