We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52578a5 commit 97ad788Copy full SHA for 97ad788
experimental/python/Makefile
@@ -17,7 +17,10 @@ lint:
17
uv run ruff format --diff
18
19
codegen:
20
- find databricks -name _models | xargs rm -rf
+ find databricks/bundles -type d -mindepth 1 -maxdepth 1 \
21
+ ! -path databricks/bundles/core \
22
+ ! -path databricks/bundles/resources \
23
+ -exec rm -rf {} \;
24
25
cd codegen; uv run -m pytest codegen_tests
26
cd codegen; uv run -m codegen.main --output ..
experimental/python/databricks/bundles/compute/__init__.py
0 commit comments