From 41c2999e0a82558682b4c92050e1c6fc72b25d1c Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Tue, 27 Aug 2024 20:40:24 +0200 Subject: [PATCH] regression-tests.auth-py: avoid authbind on macOS Not necessary. --- regression-tests.auth-py/authtests.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/regression-tests.auth-py/authtests.py b/regression-tests.auth-py/authtests.py index 2b096d2efd..5eb6534df8 100644 --- a/regression-tests.auth-py/authtests.py +++ b/regression-tests.auth-py/authtests.py @@ -69,8 +69,10 @@ PrivateKey: Lt0v0Gol3pRUFM7fDdcy0IWN0O/MnEmVPA+VylL8Y4U= """, } - _auth_cmd = ['authbind', - os.environ['PDNS']] + _auth_cmd = [os.environ['PDNS']] + if sys.platform != 'darwin': + _auth_cmd = ['authbind'] + _auth_cmd + _auth_env = {} _auths = {} -- 2.47.2