Temporarily skip tests that fail due to expired test certificates

epel10
Fabio Valentini 6 months ago
parent 0373215b80
commit 5e3ce2ccc1
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

@ -115,7 +115,8 @@ use the "tls12" feature of the "%{crate}" crate.
%if %{with check} %if %{with check}
%check %check
# * skip tests that require internet access # * skip tests that require internet access
%cargo_test -- -- --exact --skip common::test_stream::stream_handshake_regression_issues_77 --skip test_modern --skip test_tls12 --skip test_modern_vectored --skip test_tls12_vectored # * skip tests that fail due to expired certificates
%cargo_test -- -- --exact --skip common::test_stream::stream_handshake_regression_issues_77 --skip test_modern --skip test_tls12 --skip test_tls12_vectored --skip test_modern_vectored --skip common::test_stream::stream_bad --skip common::test_stream::stream_buffered_handshake --skip common::test_stream::stream_eof --skip common::test_stream::stream_good --skip common::test_stream::stream_good_vectored --skip common::test_stream::stream_handshake --skip pass --skip test_lazy_config_acceptor
%endif %endif
%changelog %changelog

@ -5,12 +5,25 @@ cargo-toml-patch-comments = [
[tests] [tests]
skip = [ skip = [
# require internet access
"common::test_stream::stream_handshake_regression_issues_77", "common::test_stream::stream_handshake_regression_issues_77",
"test_modern", "test_modern",
"test_tls12", "test_tls12",
"test_tls12_vectored", "test_tls12_vectored",
"test_modern_vectored", "test_modern_vectored",
# expired test certificate
"common::test_stream::stream_bad",
"common::test_stream::stream_buffered_handshake",
"common::test_stream::stream_eof",
"common::test_stream::stream_good",
"common::test_stream::stream_good_vectored",
"common::test_stream::stream_handshake",
"pass",
"test_lazy_config_acceptor",
] ]
skip-exact = true skip-exact = true
comments = ["skip tests that require internet access"] comments = [
"skip tests that require internet access",
"skip tests that fail due to expired certificates",
]

Loading…
Cancel
Save