From 7338db49a6192a3d6ad3dddd96873c3b5b5f52d3 Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Thu, 2 Nov 2023 22:48:00 +0100 Subject: [PATCH] Skip unreliable tests regardless of chosen crypto backend --- rust-sequoia-openpgp.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rust-sequoia-openpgp.spec b/rust-sequoia-openpgp.spec index 28174c9..59c8439 100644 --- a/rust-sequoia-openpgp.spec +++ b/rust-sequoia-openpgp.spec @@ -224,11 +224,11 @@ use the "openssl-sys" feature of the "%{crate}" crate. %if %{with check} %check +# * skip tests that are not reliable: +# https://gitlab.com/sequoia-pgp/sequoia/-/issues/1064 # * run tests with the Nettle crypto backend (default) -%cargo_test -n -f crypto-nettle,compression +%cargo_test -n -f crypto-nettle,compression -- -- --skip leak_tests # * run tests with the OpenSSL crypto backend -# * skip tests that are not reliable with OpenSSL: -# https://gitlab.com/sequoia-pgp/sequoia/-/issues/1064 %cargo_test -n -f crypto-openssl,compression -- -- --skip leak_tests %endif