mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
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
@ -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 New Issue
Block a user