From 29f0f2914efacd2e6b9bc7115f5c2d3790bb12cc Mon Sep 17 00:00:00 2001 From: Afreen Misbah Date: Thu, 8 May 2025 14:23:07 +0530 Subject: [PATCH] mgr/dashboard: fix make check tests Fixes https://tracker.ceph.com/issues/71246 Pr are failing with errors import errors running pylint Signed-off-by: Afreen Misbah --- src/pybind/mgr/dashboard/.pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/dashboard/.pylintrc b/src/pybind/mgr/dashboard/.pylintrc index 79dfbad7d9614..a6353c8a67e0d 100644 --- a/src/pybind/mgr/dashboard/.pylintrc +++ b/src/pybind/mgr/dashboard/.pylintrc @@ -16,7 +16,7 @@ ignore-patterns= # Python code to execute, usually for sys.path manipulation such as # pygtk.require(). -init-hook='import sys; sys.path.append("./")' +init-hook='import sys; sys.path.append("./"); sys.path.append("../../../python-common")' # Use multiple processes to speed up Pylint. jobs=1 -- 2.39.5