diff --git a/pyproject.toml b/pyproject.toml index 2559131183275966efeeaff7c4a05b11b8ef97de..6e5427098f8c734098f350ddf2c9cff6b5f2bea4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -40,6 +40,11 @@ pylint = "^2.6.0" sphinx = "^3.2.1" sphinx_rtd_theme = "^0.5.0" +# Trick for pylint CI job to not stumble upon E0401 and E1101 import issues +# This is the path of Poetry virtualenv in order to found the dependencies +[tool.pylint.master] +init-hook = "import sys; sys.path.append('/builds/clients/python/duniterpy/.venv')" + [tool.pylint.messages_control] disable = """, C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613