The branch, master has been updated via 63cc92501e9 gitignore: Add .cache directory via b4a301a6b76 selftest: Add PYTHONPATH for lsp servers to devel_env.sh from 1f047831c16 s3:utils: Use better error message for smbtree
https://git.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 63cc92501e98ee3adeb458fca6d7559f49518f6d Author: Andreas Schneider <a...@samba.org> Date: Thu Jul 15 16:52:02 2021 +0200 gitignore: Add .cache directory Signed-off-by: Andreas Schneider <a...@samba.org> Reviewed-by: Alexander Bokovoy <a...@samba.org> Autobuild-User(master): Andreas Schneider <a...@cryptomilk.org> Autobuild-Date(master): Mon Jul 19 15:27:14 UTC 2021 on sn-devel-184 commit b4a301a6b7647e2deffe5b086e35b180a5c99ec8 Author: Andreas Schneider <a...@samba.org> Date: Thu Jul 15 16:50:56 2021 +0200 selftest: Add PYTHONPATH for lsp servers to devel_env.sh Signed-off-by: Andreas Schneider <a...@samba.org> Reviewed-by: Alexander Bokovoy <a...@samba.org> ----------------------------------------------------------------------- Summary of changes: .gitignore | 3 ++- selftest/devel_env.sh | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) Changeset truncated at 500 lines: diff --git a/.gitignore b/.gitignore index 49abc2e9099..ea59a312e73 100644 --- a/.gitignore +++ b/.gitignore @@ -83,6 +83,7 @@ python/samba/provision/kerberos_implementation.py # read by direnv to auto load environment variables .envrc -# YouCompleteMe +# LSP servers compile_commands.json .clangd/ +.cache/ diff --git a/selftest/devel_env.sh b/selftest/devel_env.sh index d1c0736ab09..ccf433da782 100644 --- a/selftest/devel_env.sh +++ b/selftest/devel_env.sh @@ -9,3 +9,6 @@ export TDB_NO_FSYNC=1 export NMBD_DONT_LOG_STDOUT=1 export SMBD_DONT_LOG_STDOUT=1 export WINBINDD_DONT_LOG_STDOUT=1 + +# Setup python path for lsp server +export PYTHONPATH="$(pwd)/third_party/waf:$(pwd)/python:$(pwd)/selftest:$PYTHONPATH" -- Samba Shared Repository