diff --git a/python-pyOpenSSL.changes b/python-pyOpenSSL.changes index 1314978..baffb29 100644 --- a/python-pyOpenSSL.changes +++ b/python-pyOpenSSL.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Oct 8 08:34:33 UTC 2025 - Markéta Machová + +- Skip test_client_receives_servers_data failing with openssl 3.6.0 + and rewrite tests exclusion to be more atomic + ------------------------------------------------------------------- Mon Sep 29 19:11:03 UTC 2025 - Dirk Müller diff --git a/python-pyOpenSSL.spec b/python-pyOpenSSL.spec index f55061b..3e1addf 100644 --- a/python-pyOpenSSL.spec +++ b/python-pyOpenSSL.spec @@ -84,12 +84,14 @@ other things) a cffi-based interface to OpenSSL. %check %if %{with test} -SKIPPED_TESTS="(network or test_set_tmp_ecdh)" +SKIPPED_TESTS="network or test_set_tmp_ecdh" %if %{__isa_bits} == 32 -SKIPPED_TESTS="(network or test_verify_with_time or test_set_tmp_ecdh)" +SKIPPED_TESTS="$SKIPPED_TESTS or test_verify_with_time" %endif +# failure with openssl 3.6.0 https://github.com/pyca/pyopenssl/issues/1455 +SKIPPED_TESTS="$SKIPPED_TESTS or test_client_receives_servers_data" export LC_ALL=en_US.UTF-8 -%pytest -k "not $SKIPPED_TESTS" +%pytest -k "not ($SKIPPED_TESTS)" %endif %if !%{with test}