From a5f377f280931a724e56354ddd961e008b37088b Mon Sep 17 00:00:00 2001 From: Neil Horman Date: Fri, 28 Mar 2025 07:51:02 -0400 Subject: [PATCH] Fix up external pyca test The latest version of pyca-cryptography no longer has a setup.py script, so change the check in the test to look for release.py instead Reviewed-by: Tomas Mraz Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/27192) --- test/recipes/95-test_external_pyca.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/recipes/95-test_external_pyca.t b/test/recipes/95-test_external_pyca.t index a3d09c118cb..92356349385 100644 --- a/test/recipes/95-test_external_pyca.t +++ b/test/recipes/95-test_external_pyca.t @@ -18,7 +18,7 @@ plan skip_all => "No external tests in this configuration" plan skip_all => "PYCA tests not available on Windows or VMS" if $^O =~ /^(VMS|MSWin32)$/; plan skip_all => "PYCA Cryptography not available" - if ! -f srctop_file("pyca-cryptography", "setup.py"); + if ! -f srctop_file("pyca-cryptography", "release.py"); plan skip_all => "PYCA tests only available in a shared build" if disabled("shared"); -- 2.47.2