From: John Mulligan Date: Thu, 9 Jul 2026 14:28:13 +0000 (-0400) Subject: qa/workunits/smb: work around test failures by pinning smbprotocol version X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ce5ceabfae51ea7f1d2168fbdc982521d3766584;p=ceph.git 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 --- 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 "$@"