acc: Disable git hooks (#2249)

Otherwise hooks from universe and custom hooks run in tests.
This commit is contained in:
Denis Bilenko 2025-01-28 15:00:41 +01:00 committed by GitHub
parent 65e4f79dfe
commit 5971bd5c1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ git-repo-init() {
git config core.autocrlf false git config core.autocrlf false
git config user.name "Tester" git config user.name "Tester"
git config user.email "tester@databricks.com" git config user.email "tester@databricks.com"
git config core.hooksPath no-hooks
git add databricks.yml git add databricks.yml
git commit -qm 'Add databricks.yml' git commit -qm 'Add databricks.yml'
} }