15
0

Accepting request 1309768 from devel:languages:python

- Skip test_client_receives_servers_data failing with openssl 3.6.0
  and rewrite tests exclusion to be more atomic

OBS-URL: https://build.opensuse.org/request/show/1309768
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyOpenSSL?expand=0&rev=62
This commit is contained in:
2025-10-24 15:23:02 +00:00
committed by Git OBS Bridge
2 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Wed Oct 8 08:34:33 UTC 2025 - Markéta Machová <mmachova@suse.com>
- 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 <dmueller@suse.com>

View File

@@ -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}