diff options
author | Remi Collet <remi@remirepo.net> | 2025-04-28 09:12:03 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-04-28 09:12:03 +0200 |
commit | e31e16d4f7e1f51d70c99209f0af852cd3272c54 (patch) | |
tree | e5cd3a156a9ecd8c786b35d01ff908ea7a02d46c | |
parent | 66d597d72d011badfb70e561aeee10116ae629bb (diff) |
-rw-r--r-- | php-phpmailer6.spec | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/php-phpmailer6.spec b/php-phpmailer6.spec index f0d0f2d..b4994dc 100644 --- a/php-phpmailer6.spec +++ b/php-phpmailer6.spec @@ -184,7 +184,12 @@ ret=0 for cmd in php php81 php82 php83 php84; do if which $cmd; then $cmd -d "sendmail_path=$PWD/test/fakesendmail.sh -t -i " \ - %{phpunit} --exclude slow,pop3,languages --verbose || ret=1 + %{phpunit} \ + --exclude slow,pop3,languages \ +%if 0%{?fedora} >= 43 + --filter '^((?!(testSigning|testSigningWithCA)).)*$' \ +%endif + || ret=1 fi done |