Remove --feeling-safe from interop_tests.yml Recently a fedora-43 container update started causing our nightly gnutls/nss interop tests to fail: https://github.com/openssl/openssl/actions/runs/34522780210/job/103024153715 It appears that the --feeling-safe argument to the tmt command is no valid as part of the run subcommand, and rather needs to be specified prior to the subcommand - i.e. tmt --feeling-safe run So make that adjustment here Reviewed-by: Matt Caswell <matt@openssl.foundation> Reviewed-by: Andrew Dinh <andrewd@openssl.org> MergeDate: Sat Sep 12 13:22:26 2026 (Merged from https://github.com/openssl/openssl/pull/32791)
diff --git a/.github/workflows/interop-tests.yml b/.github/workflows/interop-tests.yml index 28643b2..0c8ce44 100644 --- a/.github/workflows/interop-tests.yml +++ b/.github/workflows/interop-tests.yml
@@ -97,7 +97,7 @@ - name: Run interop tests run: | cd interop - tmt run -av plans -n interop tests -f "tag: interop-openssl & tag: interop-$COMPONENT" provision -h local --feeling-safe execute -h tmt --interactive + tmt --feeling-safe run -av plans -n interop tests -f "tag: interop-openssl & tag: interop-$COMPONENT" provision -h local execute -h tmt --interactive openssl version echo "Finished - important to prevent unwanted output truncating" openssh_interop: