From ce5ceabfae51ea7f1d2168fbdc982521d3766584 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 9 Jul 2026 10:28:13 -0400 Subject: [PATCH] qa/workunits/smb: work around test failures by pinning smbprotocol version Work around new tests failures (in the TestHostsAccessToggle1 tests) where the error/exception handling has apparently changed by just pinning the version (by excluding the new v1.17.0 and newer versions). Signed-off-by: John Mulligan --- qa/workunits/smb/smb_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/workunits/smb/smb_tests.sh b/qa/workunits/smb/smb_tests.sh index 24337ff6c9c..8bb33ca4b03 100755 --- a/qa/workunits/smb/smb_tests.sh +++ b/qa/workunits/smb/smb_tests.sh @@ -23,5 +23,5 @@ fi trap cleanup EXIT cd "${HERE}" -"${VENV}/bin/${PY}" -m pip install pytest smbprotocol +"${VENV}/bin/${PY}" -m pip install pytest 'smbprotocol<1.17.0' "${VENV}/bin/${PY}" -m pytest -v "$@" -- 2.47.3