From 7a10da9588e4ced3bb058fcfa717d1ea9f6bd559 Mon Sep 17 00:00:00 2001 From: Adam King Date: Mon, 8 Apr 2024 10:48:18 -0400 Subject: [PATCH] cephadm: pin pyfakefs version for tox tests 5.4.0 seems to have caused a number of permission issues in the test. In order to unblock make check, let's pin it to 5.3.5 for now. Signed-off-by: Adam King (cherry picked from commit ce71ce10b7551a649c9a64be992c0eddfa7e7243) --- src/cephadm/tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cephadm/tox.ini b/src/cephadm/tox.ini index 75758c068118d..858f49556961d 100644 --- a/src/cephadm/tox.ini +++ b/src/cephadm/tox.ini @@ -34,7 +34,7 @@ addopts = skip_install=true deps = pyfakefs == 4.5.6 ; python_version < "3.7" - pyfakefs >= 5, < 6 ; python_version >= "3.7" + pyfakefs == 5.3.5 ; python_version >= "3.7" mock pytest commands=pytest {posargs} -- 2.39.5