diff --git a/Makefile b/Makefile index 19c05f9928..77c932a97d 100644 --- a/Makefile +++ b/Makefile @@ -64,6 +64,10 @@ test-update: @# at the moment second pass is required because some tests show diff against output of another test for easier review -go test ./acceptance -run '^TestAccept$$' -update -timeout=${LOCAL_TIMEOUT} +# Regenerate out.test.toml files without running tests +test-generate-out-test-toml: + go test ./acceptance -run '^TestAccept$$' -only-out-test-toml -timeout=${LOCAL_TIMEOUT} + # Updates acceptance test output for template tests only test-update-templates: -go test ./acceptance -run '^TestAccept/bundle/templates' -update -timeout=${LOCAL_TIMEOUT} @@ -147,4 +151,4 @@ generate: $(GENKIT_BINARY) update-sdk -.PHONY: lint lintfull tidy lintcheck fmt fmtfull test cover showcover build snapshot snapshot-release schema integration integration-short acc-cover acc-showcover docs ws links checks test-update test-update-templates test-update-aws test-update-all generate-validation +.PHONY: lint lintfull tidy lintcheck fmt fmtfull test cover showcover build snapshot snapshot-release schema integration integration-short acc-cover acc-showcover docs ws links checks test-update test-update-templates test-update-aws test-update-all generate-validation test-generate-out-test-toml diff --git a/acceptance/acceptance_test.go b/acceptance/acceptance_test.go index 7a5209601e..7ed8f20ce8 100644 --- a/acceptance/acceptance_test.go +++ b/acceptance/acceptance_test.go @@ -37,17 +37,18 @@ import ( ) var ( - KeepTmp bool - NoRepl bool - VerboseTest bool = os.Getenv("VERBOSE_TEST") != "" - Tail bool - Forcerun bool - LogRequests bool - LogConfig bool - SkipLocal bool - UseVersion string - WorkspaceTmpDir bool - TerraformDir string + KeepTmp bool + NoRepl bool + VerboseTest bool = os.Getenv("VERBOSE_TEST") != "" + Tail bool + Forcerun bool + LogRequests bool + LogConfig bool + SkipLocal bool + UseVersion string + WorkspaceTmpDir bool + TerraformDir string + OnlyOutTestTomlMode bool ) // In order to debug CLI running under acceptance test, search for TestInprocessMode and update @@ -78,6 +79,8 @@ func init() { // creates these symlinks when a file_mirror is used for a provider (in .terraformrc). This flag // allows us to download the provider to the workspace file system on DBR enabling DBR integration testing. flag.StringVar(&TerraformDir, "terraform-dir", "", "Directory to download the terraform provider to") + + flag.BoolVar(&OnlyOutTestTomlMode, "only-out-test-toml", false, "Only regenerate out.test.toml files without running tests") } const ( @@ -295,7 +298,7 @@ func testAccept(t *testing.T, inprocessMode bool, singleTest string) int { config, configPath := internal.LoadConfig(t, dir) skipReason := getSkipReason(&config, configPath) - if testdiff.OverwriteMode { + if testdiff.OverwriteMode || OnlyOutTestTomlMode { // Generate materialized config for this test // We do this before skipping the test, so the configs are generated for all tests. materializedConfig, err := internal.GenerateMaterializedConfig(config) @@ -303,6 +306,11 @@ func testAccept(t *testing.T, inprocessMode bool, singleTest string) int { testutil.WriteFile(t, filepath.Join(dir, internal.MaterializedConfigFile), materializedConfig) } + // If only regenerating out.test.toml, skip the actual test execution + if OnlyOutTestTomlMode { + t.Skip("Skipping test execution (only regenerating out.test.toml)") + } + if skipReason != "" { skippedDirs += 1 t.Skip(skipReason) diff --git a/acceptance/auth/bundle_and_profile/out.test.toml b/acceptance/auth/bundle_and_profile/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/auth/bundle_and_profile/out.test.toml +++ b/acceptance/auth/bundle_and_profile/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/auth/credentials/basic/out.test.toml b/acceptance/auth/credentials/basic/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/auth/credentials/basic/out.test.toml +++ b/acceptance/auth/credentials/basic/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/auth/credentials/oauth/out.test.toml b/acceptance/auth/credentials/oauth/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/auth/credentials/oauth/out.test.toml +++ b/acceptance/auth/credentials/oauth/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/auth/credentials/pat/out.test.toml b/acceptance/auth/credentials/pat/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/auth/credentials/pat/out.test.toml +++ b/acceptance/auth/credentials/pat/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/apps/app_yaml/out.test.toml b/acceptance/bundle/apps/app_yaml/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/apps/app_yaml/out.test.toml +++ b/acceptance/bundle/apps/app_yaml/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/artifact_path_with_volume/volume_doesnot_exist/out.test.toml b/acceptance/bundle/artifacts/artifact_path_with_volume/volume_doesnot_exist/out.test.toml index 7190c9b30b..c6eed07fbc 100644 --- a/acceptance/bundle/artifacts/artifact_path_with_volume/volume_doesnot_exist/out.test.toml +++ b/acceptance/bundle/artifacts/artifact_path_with_volume/volume_doesnot_exist/out.test.toml @@ -2,5 +2,11 @@ Local = false Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/artifact_path_with_volume/volume_not_deployed/out.test.toml b/acceptance/bundle/artifacts/artifact_path_with_volume/volume_not_deployed/out.test.toml index 7190c9b30b..c6eed07fbc 100644 --- a/acceptance/bundle/artifacts/artifact_path_with_volume/volume_not_deployed/out.test.toml +++ b/acceptance/bundle/artifacts/artifact_path_with_volume/volume_not_deployed/out.test.toml @@ -2,5 +2,11 @@ Local = false Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/artifact_upload_for_volumes/out.test.toml b/acceptance/bundle/artifacts/artifact_upload_for_volumes/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/artifact_upload_for_volumes/out.test.toml +++ b/acceptance/bundle/artifacts/artifact_upload_for_volumes/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/artifact_upload_for_workspace/out.test.toml b/acceptance/bundle/artifacts/artifact_upload_for_workspace/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/artifact_upload_for_workspace/out.test.toml +++ b/acceptance/bundle/artifacts/artifact_upload_for_workspace/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/artifact_upload_with_no_library_reference/out.test.toml b/acceptance/bundle/artifacts/artifact_upload_with_no_library_reference/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/artifact_upload_with_no_library_reference/out.test.toml +++ b/acceptance/bundle/artifacts/artifact_upload_with_no_library_reference/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/artifacts_dynamic_version/out.test.toml b/acceptance/bundle/artifacts/artifacts_dynamic_version/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/artifacts_dynamic_version/out.test.toml +++ b/acceptance/bundle/artifacts/artifacts_dynamic_version/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/build_and_files/out.test.toml b/acceptance/bundle/artifacts/build_and_files/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/build_and_files/out.test.toml +++ b/acceptance/bundle/artifacts/build_and_files/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/build_and_files_whl/out.test.toml b/acceptance/bundle/artifacts/build_and_files_whl/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/build_and_files_whl/out.test.toml +++ b/acceptance/bundle/artifacts/build_and_files_whl/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/glob_exact_whl/out.test.toml b/acceptance/bundle/artifacts/glob_exact_whl/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/glob_exact_whl/out.test.toml +++ b/acceptance/bundle/artifacts/glob_exact_whl/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/globs_in_files/out.test.toml b/acceptance/bundle/artifacts/globs_in_files/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/globs_in_files/out.test.toml +++ b/acceptance/bundle/artifacts/globs_in_files/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/globs_in_files_in_include/out.test.toml b/acceptance/bundle/artifacts/globs_in_files_in_include/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/globs_in_files_in_include/out.test.toml +++ b/acceptance/bundle/artifacts/globs_in_files_in_include/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/globs_invalid/out.test.toml b/acceptance/bundle/artifacts/globs_invalid/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/globs_invalid/out.test.toml +++ b/acceptance/bundle/artifacts/globs_invalid/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/issue_3109/out.test.toml b/acceptance/bundle/artifacts/issue_3109/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/issue_3109/out.test.toml +++ b/acceptance/bundle/artifacts/issue_3109/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/nil_artifacts/out.test.toml b/acceptance/bundle/artifacts/nil_artifacts/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/nil_artifacts/out.test.toml +++ b/acceptance/bundle/artifacts/nil_artifacts/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/same_name_libraries/out.test.toml b/acceptance/bundle/artifacts/same_name_libraries/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/same_name_libraries/out.test.toml +++ b/acceptance/bundle/artifacts/same_name_libraries/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/shell/bash/out.test.toml b/acceptance/bundle/artifacts/shell/bash/out.test.toml index 40bb0d1047..9f4aca6b90 100644 --- a/acceptance/bundle/artifacts/shell/bash/out.test.toml +++ b/acceptance/bundle/artifacts/shell/bash/out.test.toml @@ -4,5 +4,11 @@ Cloud = false [GOOS] windows = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/shell/basic/out.test.toml b/acceptance/bundle/artifacts/shell/basic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/shell/basic/out.test.toml +++ b/acceptance/bundle/artifacts/shell/basic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/shell/cmd/out.test.toml b/acceptance/bundle/artifacts/shell/cmd/out.test.toml index d820d4a4ec..109fb13717 100644 --- a/acceptance/bundle/artifacts/shell/cmd/out.test.toml +++ b/acceptance/bundle/artifacts/shell/cmd/out.test.toml @@ -5,5 +5,11 @@ Cloud = false darwin = false linux = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/shell/default/out.test.toml b/acceptance/bundle/artifacts/shell/default/out.test.toml index 40bb0d1047..9f4aca6b90 100644 --- a/acceptance/bundle/artifacts/shell/default/out.test.toml +++ b/acceptance/bundle/artifacts/shell/default/out.test.toml @@ -4,5 +4,11 @@ Cloud = false [GOOS] windows = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/shell/err-bash/out.test.toml b/acceptance/bundle/artifacts/shell/err-bash/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/shell/err-bash/out.test.toml +++ b/acceptance/bundle/artifacts/shell/err-bash/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/shell/err-sh/out.test.toml b/acceptance/bundle/artifacts/shell/err-sh/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/shell/err-sh/out.test.toml +++ b/acceptance/bundle/artifacts/shell/err-sh/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/shell/invalid/out.test.toml b/acceptance/bundle/artifacts/shell/invalid/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/shell/invalid/out.test.toml +++ b/acceptance/bundle/artifacts/shell/invalid/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/shell/sh/out.test.toml b/acceptance/bundle/artifacts/shell/sh/out.test.toml index 40bb0d1047..9f4aca6b90 100644 --- a/acceptance/bundle/artifacts/shell/sh/out.test.toml +++ b/acceptance/bundle/artifacts/shell/sh/out.test.toml @@ -4,5 +4,11 @@ Cloud = false [GOOS] windows = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/unique_name_libraries/out.test.toml b/acceptance/bundle/artifacts/unique_name_libraries/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/unique_name_libraries/out.test.toml +++ b/acceptance/bundle/artifacts/unique_name_libraries/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/upload_multiple_libraries/out.test.toml b/acceptance/bundle/artifacts/upload_multiple_libraries/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/upload_multiple_libraries/out.test.toml +++ b/acceptance/bundle/artifacts/upload_multiple_libraries/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_change_version/out.test.toml b/acceptance/bundle/artifacts/whl_change_version/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_change_version/out.test.toml +++ b/acceptance/bundle/artifacts/whl_change_version/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_dbfs/out.test.toml b/acceptance/bundle/artifacts/whl_dbfs/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_dbfs/out.test.toml +++ b/acceptance/bundle/artifacts/whl_dbfs/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_dynamic/out.test.toml b/acceptance/bundle/artifacts/whl_dynamic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_dynamic/out.test.toml +++ b/acceptance/bundle/artifacts/whl_dynamic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_explicit/out.test.toml b/acceptance/bundle/artifacts/whl_explicit/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_explicit/out.test.toml +++ b/acceptance/bundle/artifacts/whl_explicit/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_implicit/out.test.toml b/acceptance/bundle/artifacts/whl_implicit/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_implicit/out.test.toml +++ b/acceptance/bundle/artifacts/whl_implicit/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_implicit_custom_path/out.test.toml b/acceptance/bundle/artifacts/whl_implicit_custom_path/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_implicit_custom_path/out.test.toml +++ b/acceptance/bundle/artifacts/whl_implicit_custom_path/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_implicit_notebook/out.test.toml b/acceptance/bundle/artifacts/whl_implicit_notebook/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_implicit_notebook/out.test.toml +++ b/acceptance/bundle/artifacts/whl_implicit_notebook/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_multiple/out.test.toml b/acceptance/bundle/artifacts/whl_multiple/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_multiple/out.test.toml +++ b/acceptance/bundle/artifacts/whl_multiple/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_no_cleanup/out.test.toml b/acceptance/bundle/artifacts/whl_no_cleanup/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_no_cleanup/out.test.toml +++ b/acceptance/bundle/artifacts/whl_no_cleanup/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_prebuilt_multiple/out.test.toml b/acceptance/bundle/artifacts/whl_prebuilt_multiple/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_prebuilt_multiple/out.test.toml +++ b/acceptance/bundle/artifacts/whl_prebuilt_multiple/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_prebuilt_outside/out.test.toml b/acceptance/bundle/artifacts/whl_prebuilt_outside/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_prebuilt_outside/out.test.toml +++ b/acceptance/bundle/artifacts/whl_prebuilt_outside/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_prebuilt_outside_dynamic/out.test.toml b/acceptance/bundle/artifacts/whl_prebuilt_outside_dynamic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_prebuilt_outside_dynamic/out.test.toml +++ b/acceptance/bundle/artifacts/whl_prebuilt_outside_dynamic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/artifacts/whl_via_environment_key/out.test.toml b/acceptance/bundle/artifacts/whl_via_environment_key/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/artifacts/whl_via_environment_key/out.test.toml +++ b/acceptance/bundle/artifacts/whl_via_environment_key/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/bundle_tag/id/out.test.toml b/acceptance/bundle/bundle_tag/id/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/bundle_tag/id/out.test.toml +++ b/acceptance/bundle/bundle_tag/id/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/bundle_tag/url/out.test.toml b/acceptance/bundle/bundle_tag/url/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/bundle_tag/url/out.test.toml +++ b/acceptance/bundle/bundle_tag/url/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/bundle_tag/url_ref/out.test.toml b/acceptance/bundle/bundle_tag/url_ref/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/bundle_tag/url_ref/out.test.toml +++ b/acceptance/bundle/bundle_tag/url_ref/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/debug/out.test.toml b/acceptance/bundle/debug/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/debug/out.test.toml +++ b/acceptance/bundle/debug/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/deploy/alerts/basic/out.test.toml b/acceptance/bundle/deploy/alerts/basic/out.test.toml new file mode 100644 index 0000000000..3da032c2fa --- /dev/null +++ b/acceptance/bundle/deploy/alerts/basic/out.test.toml @@ -0,0 +1,11 @@ +Local = false +Cloud = false + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deploy/empty-bundle/out.test.toml b/acceptance/bundle/deploy/empty-bundle/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/deploy/empty-bundle/out.test.toml +++ b/acceptance/bundle/deploy/empty-bundle/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/deploy/experimental-python/out.test.toml b/acceptance/bundle/deploy/experimental-python/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/deploy/experimental-python/out.test.toml +++ b/acceptance/bundle/deploy/experimental-python/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/deploy/experiments/basic/out.test.toml b/acceptance/bundle/deploy/experiments/basic/out.test.toml new file mode 100644 index 0000000000..1e3b4c0fd3 --- /dev/null +++ b/acceptance/bundle/deploy/experiments/basic/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = true + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/fail-on-active-runs/out.test.toml b/acceptance/bundle/deploy/fail-on-active-runs/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/deploy/fail-on-active-runs/out.test.toml +++ b/acceptance/bundle/deploy/fail-on-active-runs/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deploy/files/no-snapshot-sync/out.test.toml b/acceptance/bundle/deploy/files/no-snapshot-sync/out.test.toml index f474b1b917..f5d8f66de6 100644 --- a/acceptance/bundle/deploy/files/no-snapshot-sync/out.test.toml +++ b/acceptance/bundle/deploy/files/no-snapshot-sync/out.test.toml @@ -1,5 +1,12 @@ Local = false Cloud = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/deploy/jobs/check-metadata/out.test.toml b/acceptance/bundle/deploy/jobs/check-metadata/out.test.toml new file mode 100644 index 0000000000..97838e7d7a --- /dev/null +++ b/acceptance/bundle/deploy/jobs/check-metadata/out.test.toml @@ -0,0 +1,12 @@ +Local = false +Cloud = true + +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/jobs/double-underscore-keys/out.test.toml b/acceptance/bundle/deploy/jobs/double-underscore-keys/out.test.toml new file mode 100644 index 0000000000..1e3b4c0fd3 --- /dev/null +++ b/acceptance/bundle/deploy/jobs/double-underscore-keys/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = true + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/jobs/fail-on-active-runs/out.test.toml b/acceptance/bundle/deploy/jobs/fail-on-active-runs/out.test.toml new file mode 100644 index 0000000000..1e3b4c0fd3 --- /dev/null +++ b/acceptance/bundle/deploy/jobs/fail-on-active-runs/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = true + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/jobs/shared-root-path/out.test.toml b/acceptance/bundle/deploy/jobs/shared-root-path/out.test.toml new file mode 100644 index 0000000000..ad8bf1dd24 --- /dev/null +++ b/acceptance/bundle/deploy/jobs/shared-root-path/out.test.toml @@ -0,0 +1,11 @@ +Local = false +Cloud = true + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/jobs/task-source/out.test.toml b/acceptance/bundle/deploy/jobs/task-source/out.test.toml new file mode 100644 index 0000000000..fa2f11a596 --- /dev/null +++ b/acceptance/bundle/deploy/jobs/task-source/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = false + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/mlops-stacks/out.test.toml b/acceptance/bundle/deploy/mlops-stacks/out.test.toml index 3cdb920b67..b01402563e 100644 --- a/acceptance/bundle/deploy/mlops-stacks/out.test.toml +++ b/acceptance/bundle/deploy/mlops-stacks/out.test.toml @@ -1,5 +1,11 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deploy/models/basic/out.test.toml b/acceptance/bundle/deploy/models/basic/out.test.toml new file mode 100644 index 0000000000..1e3b4c0fd3 --- /dev/null +++ b/acceptance/bundle/deploy/models/basic/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = true + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/pipeline/allow-duplicate-names/out.test.toml b/acceptance/bundle/deploy/pipeline/allow-duplicate-names/out.test.toml new file mode 100644 index 0000000000..1e3b4c0fd3 --- /dev/null +++ b/acceptance/bundle/deploy/pipeline/allow-duplicate-names/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = true + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/pipeline/auto-approve/out.test.toml b/acceptance/bundle/deploy/pipeline/auto-approve/out.test.toml new file mode 100644 index 0000000000..1e3b4c0fd3 --- /dev/null +++ b/acceptance/bundle/deploy/pipeline/auto-approve/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = true + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/pipeline/lakeflow-pipeline/out.test.toml b/acceptance/bundle/deploy/pipeline/lakeflow-pipeline/out.test.toml new file mode 100644 index 0000000000..1e3b4c0fd3 --- /dev/null +++ b/acceptance/bundle/deploy/pipeline/lakeflow-pipeline/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = true + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/deploy/python-notebook/out.test.toml b/acceptance/bundle/deploy/python-notebook/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/deploy/python-notebook/out.test.toml +++ b/acceptance/bundle/deploy/python-notebook/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/deploy/secret-scope/out.test.toml b/acceptance/bundle/deploy/secret-scope/out.test.toml new file mode 100644 index 0000000000..a7fd1d0913 --- /dev/null +++ b/acceptance/bundle/deploy/secret-scope/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = true + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/alert/out.test.toml b/acceptance/bundle/deployment/bind/alert/out.test.toml index f9eb74f070..3da032c2fa 100644 --- a/acceptance/bundle/deployment/bind/alert/out.test.toml +++ b/acceptance/bundle/deployment/bind/alert/out.test.toml @@ -1,5 +1,11 @@ Local = false Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/cluster/out.test.toml b/acceptance/bundle/deployment/bind/cluster/out.test.toml index b01b1f1f62..8f538c93ea 100644 --- a/acceptance/bundle/deployment/bind/cluster/out.test.toml +++ b/acceptance/bundle/deployment/bind/cluster/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresCluster = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/dashboard/out.test.toml b/acceptance/bundle/deployment/bind/dashboard/out.test.toml index cae690414c..0aadfd31c4 100644 --- a/acceptance/bundle/deployment/bind/dashboard/out.test.toml +++ b/acceptance/bundle/deployment/bind/dashboard/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/dashboard/recreation/out.test.toml b/acceptance/bundle/deployment/bind/dashboard/recreation/out.test.toml index cae690414c..0aadfd31c4 100644 --- a/acceptance/bundle/deployment/bind/dashboard/recreation/out.test.toml +++ b/acceptance/bundle/deployment/bind/dashboard/recreation/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/database_instance/out.test.toml b/acceptance/bundle/deployment/bind/database_instance/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/deployment/bind/database_instance/out.test.toml +++ b/acceptance/bundle/deployment/bind/database_instance/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/experiment/out.test.toml b/acceptance/bundle/deployment/bind/experiment/out.test.toml index a9f28de48a..a7fd1d0913 100644 --- a/acceptance/bundle/deployment/bind/experiment/out.test.toml +++ b/acceptance/bundle/deployment/bind/experiment/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/job/generate-and-bind/out.test.toml b/acceptance/bundle/deployment/bind/job/generate-and-bind/out.test.toml index 3cdb920b67..85dd1d52d1 100644 --- a/acceptance/bundle/deployment/bind/job/generate-and-bind/out.test.toml +++ b/acceptance/bundle/deployment/bind/job/generate-and-bind/out.test.toml @@ -1,5 +1,12 @@ Local = false Cloud = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/job/job-abort-bind/out.test.toml b/acceptance/bundle/deployment/bind/job/job-abort-bind/out.test.toml index a9f28de48a..a7fd1d0913 100644 --- a/acceptance/bundle/deployment/bind/job/job-abort-bind/out.test.toml +++ b/acceptance/bundle/deployment/bind/job/job-abort-bind/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/job/job-spark-python-task/out.test.toml b/acceptance/bundle/deployment/bind/job/job-spark-python-task/out.test.toml index a9f28de48a..a7fd1d0913 100644 --- a/acceptance/bundle/deployment/bind/job/job-spark-python-task/out.test.toml +++ b/acceptance/bundle/deployment/bind/job/job-spark-python-task/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/job/noop-job/out.test.toml b/acceptance/bundle/deployment/bind/job/noop-job/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/deployment/bind/job/noop-job/out.test.toml +++ b/acceptance/bundle/deployment/bind/job/noop-job/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/job/python-job/out.test.toml b/acceptance/bundle/deployment/bind/job/python-job/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/deployment/bind/job/python-job/out.test.toml +++ b/acceptance/bundle/deployment/bind/job/python-job/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/model-serving-endpoint/out.test.toml b/acceptance/bundle/deployment/bind/model-serving-endpoint/out.test.toml index a9f28de48a..a7fd1d0913 100644 --- a/acceptance/bundle/deployment/bind/model-serving-endpoint/out.test.toml +++ b/acceptance/bundle/deployment/bind/model-serving-endpoint/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/quality-monitor/out.test.toml b/acceptance/bundle/deployment/bind/quality-monitor/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/deployment/bind/quality-monitor/out.test.toml +++ b/acceptance/bundle/deployment/bind/quality-monitor/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/registered-model/out.test.toml b/acceptance/bundle/deployment/bind/registered-model/out.test.toml index 9016731b25..8c3e031bd3 100644 --- a/acceptance/bundle/deployment/bind/registered-model/out.test.toml +++ b/acceptance/bundle/deployment/bind/registered-model/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/schema/out.test.toml b/acceptance/bundle/deployment/bind/schema/out.test.toml index 9016731b25..8c3e031bd3 100644 --- a/acceptance/bundle/deployment/bind/schema/out.test.toml +++ b/acceptance/bundle/deployment/bind/schema/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/secret-scope/out.test.toml b/acceptance/bundle/deployment/bind/secret-scope/out.test.toml index 9016731b25..8c3e031bd3 100644 --- a/acceptance/bundle/deployment/bind/secret-scope/out.test.toml +++ b/acceptance/bundle/deployment/bind/secret-scope/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/sql_warehouse/out.test.toml b/acceptance/bundle/deployment/bind/sql_warehouse/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/deployment/bind/sql_warehouse/out.test.toml +++ b/acceptance/bundle/deployment/bind/sql_warehouse/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/bind/volume/out.test.toml b/acceptance/bundle/deployment/bind/volume/out.test.toml index 9016731b25..8c3e031bd3 100644 --- a/acceptance/bundle/deployment/bind/volume/out.test.toml +++ b/acceptance/bundle/deployment/bind/volume/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/unbind/grants/out.test.toml b/acceptance/bundle/deployment/unbind/grants/out.test.toml index 8409922737..a088d63b32 100644 --- a/acceptance/bundle/deployment/unbind/grants/out.test.toml +++ b/acceptance/bundle/deployment/unbind/grants/out.test.toml @@ -2,6 +2,12 @@ Local = true Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] Ignore = [".databricks"] diff --git a/acceptance/bundle/deployment/unbind/job/out.test.toml b/acceptance/bundle/deployment/unbind/job/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/deployment/unbind/job/out.test.toml +++ b/acceptance/bundle/deployment/unbind/job/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/deployment/unbind/permissions/out.test.toml b/acceptance/bundle/deployment/unbind/permissions/out.test.toml index 4dccab7df1..bc3f0c2252 100644 --- a/acceptance/bundle/deployment/unbind/permissions/out.test.toml +++ b/acceptance/bundle/deployment/unbind/permissions/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] Ignore = [".databricks"] diff --git a/acceptance/bundle/deployment/unbind/python-job/out.test.toml b/acceptance/bundle/deployment/unbind/python-job/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/deployment/unbind/python-job/out.test.toml +++ b/acceptance/bundle/deployment/unbind/python-job/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/destroy/all-resources/out.test.toml b/acceptance/bundle/destroy/all-resources/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/destroy/all-resources/out.test.toml +++ b/acceptance/bundle/destroy/all-resources/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/destroy/jobs-and-pipeline/out.test.toml b/acceptance/bundle/destroy/jobs-and-pipeline/out.test.toml index f474b1b917..0fad45a5ab 100644 --- a/acceptance/bundle/destroy/jobs-and-pipeline/out.test.toml +++ b/acceptance/bundle/destroy/jobs-and-pipeline/out.test.toml @@ -1,5 +1,11 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/environments/dependencies/out.test.toml b/acceptance/bundle/environments/dependencies/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/environments/dependencies/out.test.toml +++ b/acceptance/bundle/environments/dependencies/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/experimental/skip_name_prefix_for_schema/out.test.toml b/acceptance/bundle/experimental/skip_name_prefix_for_schema/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/experimental/skip_name_prefix_for_schema/out.test.toml +++ b/acceptance/bundle/experimental/skip_name_prefix_for_schema/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/app_not_yet_deployed/out.test.toml b/acceptance/bundle/generate/app_not_yet_deployed/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/app_not_yet_deployed/out.test.toml +++ b/acceptance/bundle/generate/app_not_yet_deployed/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/app_subfolders/out.test.toml b/acceptance/bundle/generate/app_subfolders/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/app_subfolders/out.test.toml +++ b/acceptance/bundle/generate/app_subfolders/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/auto-bind/out.test.toml b/acceptance/bundle/generate/auto-bind/out.test.toml index 3cdb920b67..85dd1d52d1 100644 --- a/acceptance/bundle/generate/auto-bind/out.test.toml +++ b/acceptance/bundle/generate/auto-bind/out.test.toml @@ -1,5 +1,12 @@ Local = false Cloud = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/generate/dashboard-inplace/out.test.toml b/acceptance/bundle/generate/dashboard-inplace/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/generate/dashboard-inplace/out.test.toml +++ b/acceptance/bundle/generate/dashboard-inplace/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/generate/dashboard/out.test.toml b/acceptance/bundle/generate/dashboard/out.test.toml index d560f1de04..b7d790ba1f 100644 --- a/acceptance/bundle/generate/dashboard/out.test.toml +++ b/acceptance/bundle/generate/dashboard/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/dashboard_existing_id_not_found/out.test.toml b/acceptance/bundle/generate/dashboard_existing_id_not_found/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/dashboard_existing_id_not_found/out.test.toml +++ b/acceptance/bundle/generate/dashboard_existing_id_not_found/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/dashboard_existing_path_nominal/out.test.toml b/acceptance/bundle/generate/dashboard_existing_path_nominal/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/dashboard_existing_path_nominal/out.test.toml +++ b/acceptance/bundle/generate/dashboard_existing_path_nominal/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/dashboard_existing_path_not_found/out.test.toml b/acceptance/bundle/generate/dashboard_existing_path_not_found/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/dashboard_existing_path_not_found/out.test.toml +++ b/acceptance/bundle/generate/dashboard_existing_path_not_found/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/git_job/out.test.toml b/acceptance/bundle/generate/git_job/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/git_job/out.test.toml +++ b/acceptance/bundle/generate/git_job/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/ipynb_job/out.test.toml b/acceptance/bundle/generate/ipynb_job/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/ipynb_job/out.test.toml +++ b/acceptance/bundle/generate/ipynb_job/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/lakeflow_pipelines/out.test.toml b/acceptance/bundle/generate/lakeflow_pipelines/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/lakeflow_pipelines/out.test.toml +++ b/acceptance/bundle/generate/lakeflow_pipelines/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/pipeline/out.test.toml b/acceptance/bundle/generate/pipeline/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/pipeline/out.test.toml +++ b/acceptance/bundle/generate/pipeline/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/pipeline_with_sql/out.test.toml b/acceptance/bundle/generate/pipeline_with_sql/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/pipeline_with_sql/out.test.toml +++ b/acceptance/bundle/generate/pipeline_with_sql/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/generate/python_job/out.test.toml b/acceptance/bundle/generate/python_job/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/generate/python_job/out.test.toml +++ b/acceptance/bundle/generate/python_job/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/git-permerror/out.test.toml b/acceptance/bundle/git-permerror/out.test.toml index 40bb0d1047..9f4aca6b90 100644 --- a/acceptance/bundle/git-permerror/out.test.toml +++ b/acceptance/bundle/git-permerror/out.test.toml @@ -4,5 +4,11 @@ Cloud = false [GOOS] windows = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-deploy/out.test.toml b/acceptance/bundle/help/bundle-deploy/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-deploy/out.test.toml +++ b/acceptance/bundle/help/bundle-deploy/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-deployment/out.test.toml b/acceptance/bundle/help/bundle-deployment/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-deployment/out.test.toml +++ b/acceptance/bundle/help/bundle-deployment/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-destroy/out.test.toml b/acceptance/bundle/help/bundle-destroy/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-destroy/out.test.toml +++ b/acceptance/bundle/help/bundle-destroy/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-generate-dashboard/out.test.toml b/acceptance/bundle/help/bundle-generate-dashboard/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-generate-dashboard/out.test.toml +++ b/acceptance/bundle/help/bundle-generate-dashboard/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-generate-job/out.test.toml b/acceptance/bundle/help/bundle-generate-job/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-generate-job/out.test.toml +++ b/acceptance/bundle/help/bundle-generate-job/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-generate-pipeline/out.test.toml b/acceptance/bundle/help/bundle-generate-pipeline/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-generate-pipeline/out.test.toml +++ b/acceptance/bundle/help/bundle-generate-pipeline/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-generate/out.test.toml b/acceptance/bundle/help/bundle-generate/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-generate/out.test.toml +++ b/acceptance/bundle/help/bundle-generate/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-init/out.test.toml b/acceptance/bundle/help/bundle-init/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-init/out.test.toml +++ b/acceptance/bundle/help/bundle-init/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-open/out.test.toml b/acceptance/bundle/help/bundle-open/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-open/out.test.toml +++ b/acceptance/bundle/help/bundle-open/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-run/out.test.toml b/acceptance/bundle/help/bundle-run/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-run/out.test.toml +++ b/acceptance/bundle/help/bundle-run/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-schema/out.test.toml b/acceptance/bundle/help/bundle-schema/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-schema/out.test.toml +++ b/acceptance/bundle/help/bundle-schema/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-summary/out.test.toml b/acceptance/bundle/help/bundle-summary/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-summary/out.test.toml +++ b/acceptance/bundle/help/bundle-summary/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-sync/out.test.toml b/acceptance/bundle/help/bundle-sync/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-sync/out.test.toml +++ b/acceptance/bundle/help/bundle-sync/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle-validate/out.test.toml b/acceptance/bundle/help/bundle-validate/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle-validate/out.test.toml +++ b/acceptance/bundle/help/bundle-validate/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/help/bundle/out.test.toml b/acceptance/bundle/help/bundle/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/help/bundle/out.test.toml +++ b/acceptance/bundle/help/bundle/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/includes/glob_in_root_path/out.test.toml b/acceptance/bundle/includes/glob_in_root_path/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/includes/glob_in_root_path/out.test.toml +++ b/acceptance/bundle/includes/glob_in_root_path/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/includes/include_outside_root/out.test.toml b/acceptance/bundle/includes/include_outside_root/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/includes/include_outside_root/out.test.toml +++ b/acceptance/bundle/includes/include_outside_root/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/includes/non_yaml_in_include/out.test.toml b/acceptance/bundle/includes/non_yaml_in_include/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/includes/non_yaml_in_include/out.test.toml +++ b/acceptance/bundle/includes/non_yaml_in_include/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/includes/yml_outside_root/out.test.toml b/acceptance/bundle/includes/yml_outside_root/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/includes/yml_outside_root/out.test.toml +++ b/acceptance/bundle/includes/yml_outside_root/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/integration_whl/base/out.test.toml b/acceptance/bundle/integration_whl/base/out.test.toml index e26b67058a..3c17da55a8 100644 --- a/acceptance/bundle/integration_whl/base/out.test.toml +++ b/acceptance/bundle/integration_whl/base/out.test.toml @@ -2,5 +2,11 @@ Local = false Cloud = true CloudSlow = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/integration_whl/custom_params/out.test.toml b/acceptance/bundle/integration_whl/custom_params/out.test.toml index e26b67058a..3c17da55a8 100644 --- a/acceptance/bundle/integration_whl/custom_params/out.test.toml +++ b/acceptance/bundle/integration_whl/custom_params/out.test.toml @@ -2,5 +2,11 @@ Local = false Cloud = true CloudSlow = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/integration_whl/interactive_cluster/out.test.toml b/acceptance/bundle/integration_whl/interactive_cluster/out.test.toml index e26b67058a..3c17da55a8 100644 --- a/acceptance/bundle/integration_whl/interactive_cluster/out.test.toml +++ b/acceptance/bundle/integration_whl/interactive_cluster/out.test.toml @@ -2,5 +2,11 @@ Local = false Cloud = true CloudSlow = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/integration_whl/interactive_cluster_dynamic_version/out.test.toml b/acceptance/bundle/integration_whl/interactive_cluster_dynamic_version/out.test.toml index 2d4b5bde54..cc9e284a6d 100644 --- a/acceptance/bundle/integration_whl/interactive_cluster_dynamic_version/out.test.toml +++ b/acceptance/bundle/integration_whl/interactive_cluster_dynamic_version/out.test.toml @@ -2,6 +2,12 @@ Local = false Cloud = true CloudSlow = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] DATA_SECURITY_MODE = ["USER_ISOLATION", "SINGLE_USER"] diff --git a/acceptance/bundle/integration_whl/interactive_single_user/out.test.toml b/acceptance/bundle/integration_whl/interactive_single_user/out.test.toml index e26b67058a..3c17da55a8 100644 --- a/acceptance/bundle/integration_whl/interactive_single_user/out.test.toml +++ b/acceptance/bundle/integration_whl/interactive_single_user/out.test.toml @@ -2,5 +2,11 @@ Local = false Cloud = true CloudSlow = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/integration_whl/serverless/out.test.toml b/acceptance/bundle/integration_whl/serverless/out.test.toml index aaa0505d23..48ce2de539 100644 --- a/acceptance/bundle/integration_whl/serverless/out.test.toml +++ b/acceptance/bundle/integration_whl/serverless/out.test.toml @@ -3,5 +3,11 @@ Cloud = true CloudSlow = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/integration_whl/serverless_custom_params/out.test.toml b/acceptance/bundle/integration_whl/serverless_custom_params/out.test.toml index aaa0505d23..48ce2de539 100644 --- a/acceptance/bundle/integration_whl/serverless_custom_params/out.test.toml +++ b/acceptance/bundle/integration_whl/serverless_custom_params/out.test.toml @@ -3,5 +3,11 @@ Cloud = true CloudSlow = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/integration_whl/serverless_dynamic_version/out.test.toml b/acceptance/bundle/integration_whl/serverless_dynamic_version/out.test.toml index aaa0505d23..48ce2de539 100644 --- a/acceptance/bundle/integration_whl/serverless_dynamic_version/out.test.toml +++ b/acceptance/bundle/integration_whl/serverless_dynamic_version/out.test.toml @@ -3,5 +3,11 @@ Cloud = true CloudSlow = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/integration_whl/wrapper/out.test.toml b/acceptance/bundle/integration_whl/wrapper/out.test.toml index b021cbc740..825ce2270d 100644 --- a/acceptance/bundle/integration_whl/wrapper/out.test.toml +++ b/acceptance/bundle/integration_whl/wrapper/out.test.toml @@ -5,5 +5,11 @@ CloudSlow = true [CloudEnvs] gcp = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/integration_whl/wrapper_custom_params/out.test.toml b/acceptance/bundle/integration_whl/wrapper_custom_params/out.test.toml index b021cbc740..825ce2270d 100644 --- a/acceptance/bundle/integration_whl/wrapper_custom_params/out.test.toml +++ b/acceptance/bundle/integration_whl/wrapper_custom_params/out.test.toml @@ -5,5 +5,11 @@ CloudSlow = true [CloudEnvs] gcp = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/libraries/maven/out.test.toml b/acceptance/bundle/libraries/maven/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/libraries/maven/out.test.toml +++ b/acceptance/bundle/libraries/maven/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/libraries/outside_of_bundle_root/out.test.toml b/acceptance/bundle/libraries/outside_of_bundle_root/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/libraries/outside_of_bundle_root/out.test.toml +++ b/acceptance/bundle/libraries/outside_of_bundle_root/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/libraries/pypi/out.test.toml b/acceptance/bundle/libraries/pypi/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/libraries/pypi/out.test.toml +++ b/acceptance/bundle/libraries/pypi/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/lifecycle/prevent-destroy/out.test.toml b/acceptance/bundle/lifecycle/prevent-destroy/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/lifecycle/prevent-destroy/out.test.toml +++ b/acceptance/bundle/lifecycle/prevent-destroy/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/local_state_staleness/out.test.toml b/acceptance/bundle/local_state_staleness/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/local_state_staleness/out.test.toml +++ b/acceptance/bundle/local_state_staleness/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/open/out.test.toml b/acceptance/bundle/open/out.test.toml index 216969a761..a3550d09ad 100644 --- a/acceptance/bundle/open/out.test.toml +++ b/acceptance/bundle/open/out.test.toml @@ -5,5 +5,11 @@ Cloud = false linux = false windows = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/override/clusters/out.test.toml b/acceptance/bundle/override/clusters/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/override/clusters/out.test.toml +++ b/acceptance/bundle/override/clusters/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/override/job_cluster/out.test.toml b/acceptance/bundle/override/job_cluster/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/override/job_cluster/out.test.toml +++ b/acceptance/bundle/override/job_cluster/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/override/job_cluster_var/out.test.toml b/acceptance/bundle/override/job_cluster_var/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/override/job_cluster_var/out.test.toml +++ b/acceptance/bundle/override/job_cluster_var/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/override/job_tasks/out.test.toml b/acceptance/bundle/override/job_tasks/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/override/job_tasks/out.test.toml +++ b/acceptance/bundle/override/job_tasks/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/override/merge-string-map/out.test.toml b/acceptance/bundle/override/merge-string-map/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/override/merge-string-map/out.test.toml +++ b/acceptance/bundle/override/merge-string-map/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/override/pipeline_cluster/out.test.toml b/acceptance/bundle/override/pipeline_cluster/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/override/pipeline_cluster/out.test.toml +++ b/acceptance/bundle/override/pipeline_cluster/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/fallback/out.test.toml b/acceptance/bundle/paths/fallback/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/fallback/out.test.toml +++ b/acceptance/bundle/paths/fallback/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/git_source_jobs/out.test.toml b/acceptance/bundle/paths/git_source_jobs/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/git_source_jobs/out.test.toml +++ b/acceptance/bundle/paths/git_source_jobs/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/invalid_pipeline_globs/out.test.toml b/acceptance/bundle/paths/invalid_pipeline_globs/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/invalid_pipeline_globs/out.test.toml +++ b/acceptance/bundle/paths/invalid_pipeline_globs/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/nominal/out.test.toml b/acceptance/bundle/paths/nominal/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/nominal/out.test.toml +++ b/acceptance/bundle/paths/nominal/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/outside_root_no_sync/out.test.toml b/acceptance/bundle/paths/outside_root_no_sync/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/outside_root_no_sync/out.test.toml +++ b/acceptance/bundle/paths/outside_root_no_sync/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/pipeline_expected_file_got_notebook/out.test.toml b/acceptance/bundle/paths/pipeline_expected_file_got_notebook/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/pipeline_expected_file_got_notebook/out.test.toml +++ b/acceptance/bundle/paths/pipeline_expected_file_got_notebook/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/pipeline_globs/out.test.toml b/acceptance/bundle/paths/pipeline_globs/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/pipeline_globs/out.test.toml +++ b/acceptance/bundle/paths/pipeline_globs/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/pipeline_root_path_doesnotexist/out.test.toml b/acceptance/bundle/paths/pipeline_root_path_doesnotexist/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/pipeline_root_path_doesnotexist/out.test.toml +++ b/acceptance/bundle/paths/pipeline_root_path_doesnotexist/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/pipelines_glob_include_and_root_path/out.test.toml b/acceptance/bundle/paths/pipelines_glob_include_and_root_path/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/pipelines_glob_include_and_root_path/out.test.toml +++ b/acceptance/bundle/paths/pipelines_glob_include_and_root_path/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/pipelines_root_path_outside_sync_root/out.test.toml b/acceptance/bundle/paths/pipelines_root_path_outside_sync_root/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/pipelines_root_path_outside_sync_root/out.test.toml +++ b/acceptance/bundle/paths/pipelines_root_path_outside_sync_root/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/relative_path_outside_root/out.test.toml b/acceptance/bundle/paths/relative_path_outside_root/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/relative_path_outside_root/out.test.toml +++ b/acceptance/bundle/paths/relative_path_outside_root/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/paths/relative_path_translation/out.test.toml b/acceptance/bundle/paths/relative_path_translation/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/paths/relative_path_translation/out.test.toml +++ b/acceptance/bundle/paths/relative_path_translation/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/plan/no_upload/out.test.toml b/acceptance/bundle/plan/no_upload/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/plan/no_upload/out.test.toml +++ b/acceptance/bundle/plan/no_upload/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/presets/preset_vs_dev_mode/out.test.toml b/acceptance/bundle/presets/preset_vs_dev_mode/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/presets/preset_vs_dev_mode/out.test.toml +++ b/acceptance/bundle/presets/preset_vs_dev_mode/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/python/experimental-compatibility-both-equal/out.test.toml b/acceptance/bundle/python/experimental-compatibility-both-equal/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/experimental-compatibility-both-equal/out.test.toml +++ b/acceptance/bundle/python/experimental-compatibility-both-equal/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/experimental-compatibility-both-error/out.test.toml b/acceptance/bundle/python/experimental-compatibility-both-error/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/experimental-compatibility-both-error/out.test.toml +++ b/acceptance/bundle/python/experimental-compatibility-both-error/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/experimental-compatibility/out.test.toml b/acceptance/bundle/python/experimental-compatibility/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/experimental-compatibility/out.test.toml +++ b/acceptance/bundle/python/experimental-compatibility/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/mutator-ordering/out.test.toml b/acceptance/bundle/python/mutator-ordering/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/mutator-ordering/out.test.toml +++ b/acceptance/bundle/python/mutator-ordering/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/pipelines-support/out.test.toml b/acceptance/bundle/python/pipelines-support/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/pipelines-support/out.test.toml +++ b/acceptance/bundle/python/pipelines-support/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/resolve-variable/out.test.toml b/acceptance/bundle/python/resolve-variable/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/resolve-variable/out.test.toml +++ b/acceptance/bundle/python/resolve-variable/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/resource-loading/out.test.toml b/acceptance/bundle/python/resource-loading/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/resource-loading/out.test.toml +++ b/acceptance/bundle/python/resource-loading/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/restricted-execution/out.test.toml b/acceptance/bundle/python/restricted-execution/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/restricted-execution/out.test.toml +++ b/acceptance/bundle/python/restricted-execution/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/schemas-support/out.test.toml b/acceptance/bundle/python/schemas-support/out.test.toml index 0f245f65d5..9778d8cc6e 100644 --- a/acceptance/bundle/python/schemas-support/out.test.toml +++ b/acceptance/bundle/python/schemas-support/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/unicode-support/out.test.toml b/acceptance/bundle/python/unicode-support/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/unicode-support/out.test.toml +++ b/acceptance/bundle/python/unicode-support/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/python/volumes-support/out.test.toml b/acceptance/bundle/python/volumes-support/out.test.toml index 257a5e7686..e869d5e7be 100644 --- a/acceptance/bundle/python/volumes-support/out.test.toml +++ b/acceptance/bundle/python/volumes-support/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_ARGS = ["--with databricks-bundles==0.266.0", "--with-requirements requirements-latest.txt --no-cache"] diff --git a/acceptance/bundle/quality_monitor/out.test.toml b/acceptance/bundle/quality_monitor/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/quality_monitor/out.test.toml +++ b/acceptance/bundle/quality_monitor/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/refschema/out.test.toml b/acceptance/bundle/refschema/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/refschema/out.test.toml +++ b/acceptance/bundle/refschema/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/bad_ref_string_to_int/out.test.toml b/acceptance/bundle/resource_deps/bad_ref_string_to_int/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/bad_ref_string_to_int/out.test.toml +++ b/acceptance/bundle/resource_deps/bad_ref_string_to_int/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/bad_syntax/out.test.toml b/acceptance/bundle/resource_deps/bad_syntax/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/bad_syntax/out.test.toml +++ b/acceptance/bundle/resource_deps/bad_syntax/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/create_error/out.test.toml b/acceptance/bundle/resource_deps/create_error/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/create_error/out.test.toml +++ b/acceptance/bundle/resource_deps/create_error/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/id_chain/out.test.toml b/acceptance/bundle/resource_deps/id_chain/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/id_chain/out.test.toml +++ b/acceptance/bundle/resource_deps/id_chain/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/id_star/out.test.toml b/acceptance/bundle/resource_deps/id_star/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/id_star/out.test.toml +++ b/acceptance/bundle/resource_deps/id_star/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/job_id/out.test.toml b/acceptance/bundle/resource_deps/job_id/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/job_id/out.test.toml +++ b/acceptance/bundle/resource_deps/job_id/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/job_tasks/out.test.toml b/acceptance/bundle/resource_deps/job_tasks/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/resource_deps/job_tasks/out.test.toml +++ b/acceptance/bundle/resource_deps/job_tasks/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/resource_deps/jobs_update/out.test.toml b/acceptance/bundle/resource_deps/jobs_update/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/jobs_update/out.test.toml +++ b/acceptance/bundle/resource_deps/jobs_update/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/jobs_update_remote/out.test.toml b/acceptance/bundle/resource_deps/jobs_update_remote/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/jobs_update_remote/out.test.toml +++ b/acceptance/bundle/resource_deps/jobs_update_remote/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/loop_jobs/out.test.toml b/acceptance/bundle/resource_deps/loop_jobs/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/loop_jobs/out.test.toml +++ b/acceptance/bundle/resource_deps/loop_jobs/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/loop_self/out.test.toml b/acceptance/bundle/resource_deps/loop_self/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/loop_self/out.test.toml +++ b/acceptance/bundle/resource_deps/loop_self/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/missing_ingestion_definition/out.test.toml b/acceptance/bundle/resource_deps/missing_ingestion_definition/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/missing_ingestion_definition/out.test.toml +++ b/acceptance/bundle/resource_deps/missing_ingestion_definition/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/missing_map_key/out.test.toml b/acceptance/bundle/resource_deps/missing_map_key/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/missing_map_key/out.test.toml +++ b/acceptance/bundle/resource_deps/missing_map_key/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/missing_map_key_tffix/out.test.toml b/acceptance/bundle/resource_deps/missing_map_key_tffix/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/missing_map_key_tffix/out.test.toml +++ b/acceptance/bundle/resource_deps/missing_map_key_tffix/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/missing_string_field/out.test.toml b/acceptance/bundle/resource_deps/missing_string_field/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/missing_string_field/out.test.toml +++ b/acceptance/bundle/resource_deps/missing_string_field/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/non_existent_field/out.test.toml b/acceptance/bundle/resource_deps/non_existent_field/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/non_existent_field/out.test.toml +++ b/acceptance/bundle/resource_deps/non_existent_field/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/pipelines_recreate/out.test.toml b/acceptance/bundle/resource_deps/pipelines_recreate/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/pipelines_recreate/out.test.toml +++ b/acceptance/bundle/resource_deps/pipelines_recreate/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/present_ingestion_definition/out.test.toml b/acceptance/bundle/resource_deps/present_ingestion_definition/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/present_ingestion_definition/out.test.toml +++ b/acceptance/bundle/resource_deps/present_ingestion_definition/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/remote_app_url/out.test.toml b/acceptance/bundle/resource_deps/remote_app_url/out.test.toml index d560f1de04..48cadac929 100644 --- a/acceptance/bundle/resource_deps/remote_app_url/out.test.toml +++ b/acceptance/bundle/resource_deps/remote_app_url/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + DATABRICKS_CLI_DISABLE_TELEMETRY = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/remote_field_storage_location/out.test.toml b/acceptance/bundle/resource_deps/remote_field_storage_location/out.test.toml index 1819a94c46..53451b24b3 100644 --- a/acceptance/bundle/resource_deps/remote_field_storage_location/out.test.toml +++ b/acceptance/bundle/resource_deps/remote_field_storage_location/out.test.toml @@ -6,5 +6,11 @@ RequiresUnityCatalog = true azure = false gcp = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/remote_pipeline/out.test.toml b/acceptance/bundle/resource_deps/remote_pipeline/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/remote_pipeline/out.test.toml +++ b/acceptance/bundle/resource_deps/remote_pipeline/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/resources_var/out.test.toml b/acceptance/bundle/resource_deps/resources_var/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/resources_var/out.test.toml +++ b/acceptance/bundle/resource_deps/resources_var/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/resources_var_presets/out.test.toml b/acceptance/bundle/resource_deps/resources_var_presets/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/resources_var_presets/out.test.toml +++ b/acceptance/bundle/resource_deps/resources_var_presets/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resource_deps/resources_var_presets_implicit_deps/out.test.toml b/acceptance/bundle/resource_deps/resources_var_presets_implicit_deps/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resource_deps/resources_var_presets_implicit_deps/out.test.toml +++ b/acceptance/bundle/resource_deps/resources_var_presets_implicit_deps/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/alerts/basic/out.test.toml b/acceptance/bundle/resources/alerts/basic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/alerts/basic/out.test.toml +++ b/acceptance/bundle/resources/alerts/basic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/apps/default_description/out.test.toml b/acceptance/bundle/resources/apps/default_description/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/apps/default_description/out.test.toml +++ b/acceptance/bundle/resources/apps/default_description/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/apps/update/out.test.toml b/acceptance/bundle/resources/apps/update/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/apps/update/out.test.toml +++ b/acceptance/bundle/resources/apps/update/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/deploy/data_security_mode/out.test.toml b/acceptance/bundle/resources/clusters/deploy/data_security_mode/out.test.toml index f474b1b917..0fad45a5ab 100644 --- a/acceptance/bundle/resources/clusters/deploy/data_security_mode/out.test.toml +++ b/acceptance/bundle/resources/clusters/deploy/data_security_mode/out.test.toml @@ -1,5 +1,11 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/deploy/instance_pool/out.test.toml b/acceptance/bundle/resources/clusters/deploy/instance_pool/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/clusters/deploy/instance_pool/out.test.toml +++ b/acceptance/bundle/resources/clusters/deploy/instance_pool/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/deploy/instance_pool_and_node_type/out.test.toml b/acceptance/bundle/resources/clusters/deploy/instance_pool_and_node_type/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/clusters/deploy/instance_pool_and_node_type/out.test.toml +++ b/acceptance/bundle/resources/clusters/deploy/instance_pool_and_node_type/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/deploy/num_workers_absent/out.test.toml b/acceptance/bundle/resources/clusters/deploy/num_workers_absent/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/clusters/deploy/num_workers_absent/out.test.toml +++ b/acceptance/bundle/resources/clusters/deploy/num_workers_absent/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/deploy/simple/out.test.toml b/acceptance/bundle/resources/clusters/deploy/simple/out.test.toml index f474b1b917..0fad45a5ab 100644 --- a/acceptance/bundle/resources/clusters/deploy/simple/out.test.toml +++ b/acceptance/bundle/resources/clusters/deploy/simple/out.test.toml @@ -1,5 +1,11 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/deploy/update-after-create/out.test.toml b/acceptance/bundle/resources/clusters/deploy/update-after-create/out.test.toml index f474b1b917..0fad45a5ab 100644 --- a/acceptance/bundle/resources/clusters/deploy/update-after-create/out.test.toml +++ b/acceptance/bundle/resources/clusters/deploy/update-after-create/out.test.toml @@ -1,5 +1,11 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/deploy/update-and-resize-autoscale/out.test.toml b/acceptance/bundle/resources/clusters/deploy/update-and-resize-autoscale/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/clusters/deploy/update-and-resize-autoscale/out.test.toml +++ b/acceptance/bundle/resources/clusters/deploy/update-and-resize-autoscale/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/deploy/update-and-resize/out.test.toml b/acceptance/bundle/resources/clusters/deploy/update-and-resize/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/clusters/deploy/update-and-resize/out.test.toml +++ b/acceptance/bundle/resources/clusters/deploy/update-and-resize/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/deploy/workload_type/out.test.toml b/acceptance/bundle/resources/clusters/deploy/workload_type/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/clusters/deploy/workload_type/out.test.toml +++ b/acceptance/bundle/resources/clusters/deploy/workload_type/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/clusters/run/spark_python_task/out.test.toml b/acceptance/bundle/resources/clusters/run/spark_python_task/out.test.toml index e26b67058a..3c17da55a8 100644 --- a/acceptance/bundle/resources/clusters/run/spark_python_task/out.test.toml +++ b/acceptance/bundle/resources/clusters/run/spark_python_task/out.test.toml @@ -2,5 +2,11 @@ Local = false Cloud = true CloudSlow = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/change-embed-credentials/out.test.toml b/acceptance/bundle/resources/dashboards/change-embed-credentials/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/change-embed-credentials/out.test.toml +++ b/acceptance/bundle/resources/dashboards/change-embed-credentials/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/change-name/out.test.toml b/acceptance/bundle/resources/dashboards/change-name/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/change-name/out.test.toml +++ b/acceptance/bundle/resources/dashboards/change-name/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/change-parent-path/out.test.toml b/acceptance/bundle/resources/dashboards/change-parent-path/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/change-parent-path/out.test.toml +++ b/acceptance/bundle/resources/dashboards/change-parent-path/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/change-serialized-dashboard/out.test.toml b/acceptance/bundle/resources/dashboards/change-serialized-dashboard/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/change-serialized-dashboard/out.test.toml +++ b/acceptance/bundle/resources/dashboards/change-serialized-dashboard/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/delete-trashed-out-of-band/out.test.toml b/acceptance/bundle/resources/dashboards/delete-trashed-out-of-band/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/delete-trashed-out-of-band/out.test.toml +++ b/acceptance/bundle/resources/dashboards/delete-trashed-out-of-band/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/destroy/out.test.toml b/acceptance/bundle/resources/dashboards/destroy/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/destroy/out.test.toml +++ b/acceptance/bundle/resources/dashboards/destroy/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/detect-change/out.test.toml b/acceptance/bundle/resources/dashboards/detect-change/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/detect-change/out.test.toml +++ b/acceptance/bundle/resources/dashboards/detect-change/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/generate_inplace/out.test.toml b/acceptance/bundle/resources/dashboards/generate_inplace/out.test.toml index a50e6a7eed..23f25b46cc 100644 --- a/acceptance/bundle/resources/dashboards/generate_inplace/out.test.toml +++ b/acceptance/bundle/resources/dashboards/generate_inplace/out.test.toml @@ -2,5 +2,12 @@ Local = false Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/nested-folders/out.test.toml b/acceptance/bundle/resources/dashboards/nested-folders/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/nested-folders/out.test.toml +++ b/acceptance/bundle/resources/dashboards/nested-folders/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/publish-failure-cleans-up-dashboard/out.test.toml b/acceptance/bundle/resources/dashboards/publish-failure-cleans-up-dashboard/out.test.toml index 6feb8784c8..a70e29cf28 100644 --- a/acceptance/bundle/resources/dashboards/publish-failure-cleans-up-dashboard/out.test.toml +++ b/acceptance/bundle/resources/dashboards/publish-failure-cleans-up-dashboard/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = false RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/simple/out.test.toml b/acceptance/bundle/resources/dashboards/simple/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/simple/out.test.toml +++ b/acceptance/bundle/resources/dashboards/simple/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/simple_outside_bundle_root/out.test.toml b/acceptance/bundle/resources/dashboards/simple_outside_bundle_root/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/simple_outside_bundle_root/out.test.toml +++ b/acceptance/bundle/resources/dashboards/simple_outside_bundle_root/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/dashboards/simple_syncroot/out.test.toml b/acceptance/bundle/resources/dashboards/simple_syncroot/out.test.toml index 87248584bc..29a1325602 100644 --- a/acceptance/bundle/resources/dashboards/simple_syncroot/out.test.toml +++ b/acceptance/bundle/resources/dashboards/simple_syncroot/out.test.toml @@ -2,5 +2,12 @@ Local = true Cloud = true RequiresWarehouse = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/database_catalogs/basic/out.test.toml b/acceptance/bundle/resources/database_catalogs/basic/out.test.toml index 8d2e954f48..36989c226f 100644 --- a/acceptance/bundle/resources/database_catalogs/basic/out.test.toml +++ b/acceptance/bundle/resources/database_catalogs/basic/out.test.toml @@ -6,5 +6,11 @@ RequiresUnityCatalog = true [CloudEnvs] gcp = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/database_instances/single-instance/out.test.toml b/acceptance/bundle/resources/database_instances/single-instance/out.test.toml index 8d2e954f48..36989c226f 100644 --- a/acceptance/bundle/resources/database_instances/single-instance/out.test.toml +++ b/acceptance/bundle/resources/database_instances/single-instance/out.test.toml @@ -6,5 +6,11 @@ RequiresUnityCatalog = true [CloudEnvs] gcp = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/experiments/basic/out.test.toml b/acceptance/bundle/resources/experiments/basic/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/resources/experiments/basic/out.test.toml +++ b/acceptance/bundle/resources/experiments/basic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/independent/out.test.toml b/acceptance/bundle/resources/independent/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/independent/out.test.toml +++ b/acceptance/bundle/resources/independent/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/check-metadata/out.test.toml b/acceptance/bundle/resources/jobs/check-metadata/out.test.toml index f474b1b917..f5d8f66de6 100644 --- a/acceptance/bundle/resources/jobs/check-metadata/out.test.toml +++ b/acceptance/bundle/resources/jobs/check-metadata/out.test.toml @@ -1,5 +1,12 @@ Local = false Cloud = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/create-error/out.test.toml b/acceptance/bundle/resources/jobs/create-error/out.test.toml index 54146af564..fecee06b1b 100644 --- a/acceptance/bundle/resources/jobs/create-error/out.test.toml +++ b/acceptance/bundle/resources/jobs/create-error/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["direct"] diff --git a/acceptance/bundle/resources/jobs/delete_job/out.test.toml b/acceptance/bundle/resources/jobs/delete_job/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/jobs/delete_job/out.test.toml +++ b/acceptance/bundle/resources/jobs/delete_job/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/delete_task/out.test.toml b/acceptance/bundle/resources/jobs/delete_task/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/jobs/delete_task/out.test.toml +++ b/acceptance/bundle/resources/jobs/delete_task/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/double-underscore-keys/out.test.toml b/acceptance/bundle/resources/jobs/double-underscore-keys/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/resources/jobs/double-underscore-keys/out.test.toml +++ b/acceptance/bundle/resources/jobs/double-underscore-keys/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/fail-on-active-runs/out.test.toml b/acceptance/bundle/resources/jobs/fail-on-active-runs/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/resources/jobs/fail-on-active-runs/out.test.toml +++ b/acceptance/bundle/resources/jobs/fail-on-active-runs/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/instance_pool_and_node_type/out.test.toml b/acceptance/bundle/resources/jobs/instance_pool_and_node_type/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/jobs/instance_pool_and_node_type/out.test.toml +++ b/acceptance/bundle/resources/jobs/instance_pool_and_node_type/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/remote_delete/deploy/out.test.toml b/acceptance/bundle/resources/jobs/remote_delete/deploy/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/jobs/remote_delete/deploy/out.test.toml +++ b/acceptance/bundle/resources/jobs/remote_delete/deploy/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/remote_delete/destroy/out.test.toml b/acceptance/bundle/resources/jobs/remote_delete/destroy/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/jobs/remote_delete/destroy/out.test.toml +++ b/acceptance/bundle/resources/jobs/remote_delete/destroy/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/shared-root-path/out.test.toml b/acceptance/bundle/resources/jobs/shared-root-path/out.test.toml index f474b1b917..0fad45a5ab 100644 --- a/acceptance/bundle/resources/jobs/shared-root-path/out.test.toml +++ b/acceptance/bundle/resources/jobs/shared-root-path/out.test.toml @@ -1,5 +1,11 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/task-source/out.test.toml b/acceptance/bundle/resources/jobs/task-source/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/jobs/task-source/out.test.toml +++ b/acceptance/bundle/resources/jobs/task-source/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/update/out.test.toml b/acceptance/bundle/resources/jobs/update/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/jobs/update/out.test.toml +++ b/acceptance/bundle/resources/jobs/update/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/jobs/update_single_node/out.test.toml b/acceptance/bundle/resources/jobs/update_single_node/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/jobs/update_single_node/out.test.toml +++ b/acceptance/bundle/resources/jobs/update_single_node/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/models/basic/out.test.toml b/acceptance/bundle/resources/models/basic/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/resources/models/basic/out.test.toml +++ b/acceptance/bundle/resources/models/basic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/apps/current_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/apps/current_can_manage/out.test.toml index d560f1de04..b08e7f85c7 100644 --- a/acceptance/bundle/resources/permissions/apps/current_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/apps/current_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "apps" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/apps/other_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/apps/other_can_manage/out.test.toml index d560f1de04..b08e7f85c7 100644 --- a/acceptance/bundle/resources/permissions/apps/other_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/apps/other_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "apps" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/clusters/current_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/clusters/current_can_manage/out.test.toml index d560f1de04..d1cb7af2c6 100644 --- a/acceptance/bundle/resources/permissions/clusters/current_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/clusters/current_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "clusters" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/database_instances/current_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/database_instances/current_can_manage/out.test.toml index d560f1de04..1ba828370f 100644 --- a/acceptance/bundle/resources/permissions/database_instances/current_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/database_instances/current_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "database_instances" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/experiments/current_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/experiments/current_can_manage/out.test.toml index d560f1de04..73c3618afb 100644 --- a/acceptance/bundle/resources/permissions/experiments/current_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/experiments/current_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "experiments" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/current_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/jobs/current_can_manage/out.test.toml index d560f1de04..a9891e02db 100644 --- a/acceptance/bundle/resources/permissions/jobs/current_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/current_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/current_is_owner/out.test.toml b/acceptance/bundle/resources/permissions/jobs/current_is_owner/out.test.toml index d560f1de04..a9891e02db 100644 --- a/acceptance/bundle/resources/permissions/jobs/current_is_owner/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/current_is_owner/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/delete_one/cloud/out.test.toml b/acceptance/bundle/resources/permissions/jobs/delete_one/cloud/out.test.toml index 7190c9b30b..31fade6a63 100644 --- a/acceptance/bundle/resources/permissions/jobs/delete_one/cloud/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/delete_one/cloud/out.test.toml @@ -2,5 +2,12 @@ Local = false Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/delete_one/local/out.test.toml b/acceptance/bundle/resources/permissions/jobs/delete_one/local/out.test.toml index d560f1de04..a9891e02db 100644 --- a/acceptance/bundle/resources/permissions/jobs/delete_one/local/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/delete_one/local/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/deleted_remotely/out.test.toml b/acceptance/bundle/resources/permissions/jobs/deleted_remotely/out.test.toml index d560f1de04..a9891e02db 100644 --- a/acceptance/bundle/resources/permissions/jobs/deleted_remotely/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/deleted_remotely/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/empty_list/out.test.toml b/acceptance/bundle/resources/permissions/jobs/empty_list/out.test.toml index d560f1de04..a9891e02db 100644 --- a/acceptance/bundle/resources/permissions/jobs/empty_list/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/empty_list/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/other_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/jobs/other_can_manage/out.test.toml index d560f1de04..a9891e02db 100644 --- a/acceptance/bundle/resources/permissions/jobs/other_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/other_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/other_is_owner/out.test.toml b/acceptance/bundle/resources/permissions/jobs/other_is_owner/out.test.toml index d560f1de04..a9891e02db 100644 --- a/acceptance/bundle/resources/permissions/jobs/other_is_owner/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/other_is_owner/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/update/out.test.toml b/acceptance/bundle/resources/permissions/jobs/update/out.test.toml index d560f1de04..a9891e02db 100644 --- a/acceptance/bundle/resources/permissions/jobs/update/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/update/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/jobs/viewers/out.test.toml b/acceptance/bundle/resources/permissions/jobs/viewers/out.test.toml index d560f1de04..a9891e02db 100644 --- a/acceptance/bundle/resources/permissions/jobs/viewers/out.test.toml +++ b/acceptance/bundle/resources/permissions/jobs/viewers/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "jobs" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/models/current_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/models/current_can_manage/out.test.toml index 54146af564..22b844ba10 100644 --- a/acceptance/bundle/resources/permissions/models/current_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/models/current_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "models" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["direct"] diff --git a/acceptance/bundle/resources/permissions/out.test.toml b/acceptance/bundle/resources/permissions/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/permissions/out.test.toml +++ b/acceptance/bundle/resources/permissions/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/pipelines/current_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/pipelines/current_can_manage/out.test.toml index d560f1de04..292890690b 100644 --- a/acceptance/bundle/resources/permissions/pipelines/current_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/pipelines/current_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "pipelines" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/pipelines/current_is_owner/out.test.toml b/acceptance/bundle/resources/permissions/pipelines/current_is_owner/out.test.toml index d560f1de04..292890690b 100644 --- a/acceptance/bundle/resources/permissions/pipelines/current_is_owner/out.test.toml +++ b/acceptance/bundle/resources/permissions/pipelines/current_is_owner/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "pipelines" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/pipelines/empty_list/out.test.toml b/acceptance/bundle/resources/permissions/pipelines/empty_list/out.test.toml index d560f1de04..292890690b 100644 --- a/acceptance/bundle/resources/permissions/pipelines/empty_list/out.test.toml +++ b/acceptance/bundle/resources/permissions/pipelines/empty_list/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "pipelines" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/pipelines/other_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/pipelines/other_can_manage/out.test.toml index d560f1de04..292890690b 100644 --- a/acceptance/bundle/resources/permissions/pipelines/other_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/pipelines/other_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "pipelines" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/pipelines/other_is_owner/out.test.toml b/acceptance/bundle/resources/permissions/pipelines/other_is_owner/out.test.toml index d560f1de04..292890690b 100644 --- a/acceptance/bundle/resources/permissions/pipelines/other_is_owner/out.test.toml +++ b/acceptance/bundle/resources/permissions/pipelines/other_is_owner/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "pipelines" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/pipelines/update/out.test.toml b/acceptance/bundle/resources/permissions/pipelines/update/out.test.toml index d560f1de04..292890690b 100644 --- a/acceptance/bundle/resources/permissions/pipelines/update/out.test.toml +++ b/acceptance/bundle/resources/permissions/pipelines/update/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "pipelines" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/sql_warehouses/current_can_manage/out.test.toml b/acceptance/bundle/resources/permissions/sql_warehouses/current_can_manage/out.test.toml index d560f1de04..e07a28c211 100644 --- a/acceptance/bundle/resources/permissions/sql_warehouses/current_can_manage/out.test.toml +++ b/acceptance/bundle/resources/permissions/sql_warehouses/current_can_manage/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + RESOURCE = "sql_warehouses" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/permissions/target_permissions/out.test.toml b/acceptance/bundle/resources/permissions/target_permissions/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/permissions/target_permissions/out.test.toml +++ b/acceptance/bundle/resources/permissions/target_permissions/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/pipelines/allow-duplicate-names/out.test.toml b/acceptance/bundle/resources/pipelines/allow-duplicate-names/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/resources/pipelines/allow-duplicate-names/out.test.toml +++ b/acceptance/bundle/resources/pipelines/allow-duplicate-names/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/pipelines/auto-approve/out.test.toml b/acceptance/bundle/resources/pipelines/auto-approve/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/resources/pipelines/auto-approve/out.test.toml +++ b/acceptance/bundle/resources/pipelines/auto-approve/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/pipelines/lakeflow-pipeline/out.test.toml b/acceptance/bundle/resources/pipelines/lakeflow-pipeline/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/resources/pipelines/lakeflow-pipeline/out.test.toml +++ b/acceptance/bundle/resources/pipelines/lakeflow-pipeline/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/pipelines/recreate-keys/change-catalog/out.test.toml b/acceptance/bundle/resources/pipelines/recreate-keys/change-catalog/out.test.toml index d560f1de04..224d8ab73b 100644 --- a/acceptance/bundle/resources/pipelines/recreate-keys/change-catalog/out.test.toml +++ b/acceptance/bundle/resources/pipelines/recreate-keys/change-catalog/out.test.toml @@ -1,5 +1,15 @@ Local = true Cloud = false +[Env] + CATALOG_KEY = "catalog" + CONFIG_UPDATE = "catalog1 catalog2" + ING_KEY = "#ingestion_definition" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + STORAGE_KEY = "#storage" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/pipelines/recreate-keys/change-ingestion-definition/out.test.toml b/acceptance/bundle/resources/pipelines/recreate-keys/change-ingestion-definition/out.test.toml index d560f1de04..97fb0b1e0b 100644 --- a/acceptance/bundle/resources/pipelines/recreate-keys/change-ingestion-definition/out.test.toml +++ b/acceptance/bundle/resources/pipelines/recreate-keys/change-ingestion-definition/out.test.toml @@ -1,5 +1,15 @@ Local = true Cloud = false +[Env] + CATALOG_KEY = "#catalog" + CONFIG_UPDATE = "my_connection my_new_connection" + ING_KEY = "ingestion_definition" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + STORAGE_KEY = "#storage" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/pipelines/recreate-keys/change-storage/out.test.toml b/acceptance/bundle/resources/pipelines/recreate-keys/change-storage/out.test.toml index d560f1de04..f031aef45f 100644 --- a/acceptance/bundle/resources/pipelines/recreate-keys/change-storage/out.test.toml +++ b/acceptance/bundle/resources/pipelines/recreate-keys/change-storage/out.test.toml @@ -1,5 +1,15 @@ Local = true Cloud = false +[Env] + CATALOG_KEY = "#catalog" + CONFIG_UPDATE = "pipelines/custom pipelines/newcustom" + ING_KEY = "#ingestion_definition" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + STORAGE_KEY = "storage" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/pipelines/recreate/change-catalog/out.test.toml b/acceptance/bundle/resources/pipelines/recreate/change-catalog/out.test.toml new file mode 100644 index 0000000000..5afebd9e00 --- /dev/null +++ b/acceptance/bundle/resources/pipelines/recreate/change-catalog/out.test.toml @@ -0,0 +1,15 @@ +Local = true +Cloud = false + +[Env] + CATALOG_KEY = "catalog" + CONFIG_UPDATE = "catalog1 catalog2" + ING_KEY = "#ingestion_definition" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + STORAGE_KEY = "#storage" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/resources/pipelines/recreate/change-ingestion-definition/out.test.toml b/acceptance/bundle/resources/pipelines/recreate/change-ingestion-definition/out.test.toml new file mode 100644 index 0000000000..4a83493b70 --- /dev/null +++ b/acceptance/bundle/resources/pipelines/recreate/change-ingestion-definition/out.test.toml @@ -0,0 +1,15 @@ +Local = true +Cloud = false + +[Env] + CATALOG_KEY = "#catalog" + CONFIG_UPDATE = "my_connection my_new_connection" + ING_KEY = "ingestion_definition" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + STORAGE_KEY = "#storage" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/resources/pipelines/recreate/change-storage/out.test.toml b/acceptance/bundle/resources/pipelines/recreate/change-storage/out.test.toml new file mode 100644 index 0000000000..f0d1e63742 --- /dev/null +++ b/acceptance/bundle/resources/pipelines/recreate/change-storage/out.test.toml @@ -0,0 +1,15 @@ +Local = true +Cloud = false + +[Env] + CATALOG_KEY = "#catalog" + CONFIG_UPDATE = "pipelines/custom pipelines/newcustom" + ING_KEY = "#ingestion_definition" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + STORAGE_KEY = "storage" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/resources/pipelines/recreate/out.test.toml b/acceptance/bundle/resources/pipelines/recreate/out.test.toml index d61c11e25c..1d48197aad 100644 --- a/acceptance/bundle/resources/pipelines/recreate/out.test.toml +++ b/acceptance/bundle/resources/pipelines/recreate/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/pipelines/update/out.test.toml b/acceptance/bundle/resources/pipelines/update/out.test.toml index 01ed6822af..9b3e0d37f1 100644 --- a/acceptance/bundle/resources/pipelines/update/out.test.toml +++ b/acceptance/bundle/resources/pipelines/update/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/registered_models/basic/out.test.toml b/acceptance/bundle/resources/registered_models/basic/out.test.toml index d61c11e25c..1d48197aad 100644 --- a/acceptance/bundle/resources/registered_models/basic/out.test.toml +++ b/acceptance/bundle/resources/registered_models/basic/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/schemas/auto-approve/out.test.toml b/acceptance/bundle/resources/schemas/auto-approve/out.test.toml index d61c11e25c..1d48197aad 100644 --- a/acceptance/bundle/resources/schemas/auto-approve/out.test.toml +++ b/acceptance/bundle/resources/schemas/auto-approve/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/schemas/recreate/out.test.toml b/acceptance/bundle/resources/schemas/recreate/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/schemas/recreate/out.test.toml +++ b/acceptance/bundle/resources/schemas/recreate/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/schemas/update/out.test.toml b/acceptance/bundle/resources/schemas/update/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/schemas/update/out.test.toml +++ b/acceptance/bundle/resources/schemas/update/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/secret_scopes/backend-type/out.test.toml b/acceptance/bundle/resources/secret_scopes/backend-type/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/resources/secret_scopes/backend-type/out.test.toml +++ b/acceptance/bundle/resources/secret_scopes/backend-type/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/resources/secret_scopes/out.test.toml b/acceptance/bundle/resources/secret_scopes/out.test.toml index a9f28de48a..a7fd1d0913 100644 --- a/acceptance/bundle/resources/secret_scopes/out.test.toml +++ b/acceptance/bundle/resources/secret_scopes/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/resources/secret_scopes/permissions/out.test.toml b/acceptance/bundle/resources/secret_scopes/permissions/out.test.toml index 90061dedb1..89a34c3e7b 100644 --- a/acceptance/bundle/resources/secret_scopes/permissions/out.test.toml +++ b/acceptance/bundle/resources/secret_scopes/permissions/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/resources/sql_warehouses/out.test.toml b/acceptance/bundle/resources/sql_warehouses/out.test.toml index b66365ef37..6181128920 100644 --- a/acceptance/bundle/resources/sql_warehouses/out.test.toml +++ b/acceptance/bundle/resources/sql_warehouses/out.test.toml @@ -2,5 +2,11 @@ Local = true Cloud = false CloudSlow = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/synced_database_tables/basic/out.test.toml b/acceptance/bundle/resources/synced_database_tables/basic/out.test.toml index 16ea3a73ff..e003477e2f 100644 --- a/acceptance/bundle/resources/synced_database_tables/basic/out.test.toml +++ b/acceptance/bundle/resources/synced_database_tables/basic/out.test.toml @@ -5,5 +5,11 @@ RequiresUnityCatalog = true [CloudEnvs] gcp = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/resources/volumes/change-comment/out.test.toml b/acceptance/bundle/resources/volumes/change-comment/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/volumes/change-comment/out.test.toml +++ b/acceptance/bundle/resources/volumes/change-comment/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/volumes/change-name/out.test.toml b/acceptance/bundle/resources/volumes/change-name/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/volumes/change-name/out.test.toml +++ b/acceptance/bundle/resources/volumes/change-name/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/volumes/change-schema-name/out.test.toml b/acceptance/bundle/resources/volumes/change-schema-name/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/volumes/change-schema-name/out.test.toml +++ b/acceptance/bundle/resources/volumes/change-schema-name/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/volumes/recreate/out.test.toml b/acceptance/bundle/resources/volumes/recreate/out.test.toml index f630c9307f..c7442b23ce 100644 --- a/acceptance/bundle/resources/volumes/recreate/out.test.toml +++ b/acceptance/bundle/resources/volumes/recreate/out.test.toml @@ -2,5 +2,11 @@ Local = false Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/bundle/resources/volumes/remote-change-name/out.test.toml b/acceptance/bundle/resources/volumes/remote-change-name/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/volumes/remote-change-name/out.test.toml +++ b/acceptance/bundle/resources/volumes/remote-change-name/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/volumes/remote-delete/out.test.toml b/acceptance/bundle/resources/volumes/remote-delete/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/resources/volumes/remote-delete/out.test.toml +++ b/acceptance/bundle/resources/volumes/remote-delete/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/resources/volumes/set-storage-location/out.test.toml b/acceptance/bundle/resources/volumes/set-storage-location/out.test.toml index 1819a94c46..53451b24b3 100644 --- a/acceptance/bundle/resources/volumes/set-storage-location/out.test.toml +++ b/acceptance/bundle/resources/volumes/set-storage-location/out.test.toml @@ -6,5 +6,11 @@ RequiresUnityCatalog = true azure = false gcp = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/app-with-job/out.test.toml b/acceptance/bundle/run/app-with-job/out.test.toml index e26b67058a..101dc45048 100644 --- a/acceptance/bundle/run/app-with-job/out.test.toml +++ b/acceptance/bundle/run/app-with-job/out.test.toml @@ -2,5 +2,12 @@ Local = false Cloud = true CloudSlow = true +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/basic/out.test.toml b/acceptance/bundle/run/basic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/basic/out.test.toml +++ b/acceptance/bundle/run/basic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/diagnostics/out.test.toml b/acceptance/bundle/run/diagnostics/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/diagnostics/out.test.toml +++ b/acceptance/bundle/run/diagnostics/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/inline-script/basic/out.test.toml b/acceptance/bundle/run/inline-script/basic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/inline-script/basic/out.test.toml +++ b/acceptance/bundle/run/inline-script/basic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/inline-script/cwd/out.test.toml b/acceptance/bundle/run/inline-script/cwd/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/inline-script/cwd/out.test.toml +++ b/acceptance/bundle/run/inline-script/cwd/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/inline-script/databricks-cli/profile-is-passed/from_flag/out.test.toml b/acceptance/bundle/run/inline-script/databricks-cli/profile-is-passed/from_flag/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/inline-script/databricks-cli/profile-is-passed/from_flag/out.test.toml +++ b/acceptance/bundle/run/inline-script/databricks-cli/profile-is-passed/from_flag/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/inline-script/databricks-cli/target-is-passed/default/out.test.toml b/acceptance/bundle/run/inline-script/databricks-cli/target-is-passed/default/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/inline-script/databricks-cli/target-is-passed/default/out.test.toml +++ b/acceptance/bundle/run/inline-script/databricks-cli/target-is-passed/default/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/inline-script/databricks-cli/target-is-passed/from_flag/out.test.toml b/acceptance/bundle/run/inline-script/databricks-cli/target-is-passed/from_flag/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/inline-script/databricks-cli/target-is-passed/from_flag/out.test.toml +++ b/acceptance/bundle/run/inline-script/databricks-cli/target-is-passed/from_flag/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/inline-script/no-auth/out.test.toml b/acceptance/bundle/run/inline-script/no-auth/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/inline-script/no-auth/out.test.toml +++ b/acceptance/bundle/run/inline-script/no-auth/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/inline-script/no-bundle/out.test.toml b/acceptance/bundle/run/inline-script/no-bundle/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/inline-script/no-bundle/out.test.toml +++ b/acceptance/bundle/run/inline-script/no-bundle/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/inline-script/no-separator/out.test.toml b/acceptance/bundle/run/inline-script/no-separator/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/inline-script/no-separator/out.test.toml +++ b/acceptance/bundle/run/inline-script/no-separator/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/jobs/partial_run/out.test.toml b/acceptance/bundle/run/jobs/partial_run/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/jobs/partial_run/out.test.toml +++ b/acceptance/bundle/run/jobs/partial_run/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/no-state/out.test.toml b/acceptance/bundle/run/no-state/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/no-state/out.test.toml +++ b/acceptance/bundle/run/no-state/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/refresh-flags/out.test.toml b/acceptance/bundle/run/refresh-flags/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/refresh-flags/out.test.toml +++ b/acceptance/bundle/run/refresh-flags/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/basic/out.test.toml b/acceptance/bundle/run/scripts/basic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/basic/out.test.toml +++ b/acceptance/bundle/run/scripts/basic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/cwd/out.test.toml b/acceptance/bundle/run/scripts/cwd/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/cwd/out.test.toml +++ b/acceptance/bundle/run/scripts/cwd/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/databricks-cli/profile-is-passed/from_flag/out.test.toml b/acceptance/bundle/run/scripts/databricks-cli/profile-is-passed/from_flag/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/databricks-cli/profile-is-passed/from_flag/out.test.toml +++ b/acceptance/bundle/run/scripts/databricks-cli/profile-is-passed/from_flag/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/databricks-cli/target-is-passed/default/out.test.toml b/acceptance/bundle/run/scripts/databricks-cli/target-is-passed/default/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/databricks-cli/target-is-passed/default/out.test.toml +++ b/acceptance/bundle/run/scripts/databricks-cli/target-is-passed/default/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/databricks-cli/target-is-passed/from_flag/out.test.toml b/acceptance/bundle/run/scripts/databricks-cli/target-is-passed/from_flag/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/databricks-cli/target-is-passed/from_flag/out.test.toml +++ b/acceptance/bundle/run/scripts/databricks-cli/target-is-passed/from_flag/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/exit_code/out.test.toml b/acceptance/bundle/run/scripts/exit_code/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/exit_code/out.test.toml +++ b/acceptance/bundle/run/scripts/exit_code/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/io/out.test.toml b/acceptance/bundle/run/scripts/io/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/io/out.test.toml +++ b/acceptance/bundle/run/scripts/io/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/no-auth/out.test.toml b/acceptance/bundle/run/scripts/no-auth/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/no-auth/out.test.toml +++ b/acceptance/bundle/run/scripts/no-auth/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/no-interpolation/out.test.toml b/acceptance/bundle/run/scripts/no-interpolation/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/no-interpolation/out.test.toml +++ b/acceptance/bundle/run/scripts/no-interpolation/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/no_content/out.test.toml b/acceptance/bundle/run/scripts/no_content/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/no_content/out.test.toml +++ b/acceptance/bundle/run/scripts/no_content/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/shell/envvar/out.test.toml b/acceptance/bundle/run/scripts/shell/envvar/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/shell/envvar/out.test.toml +++ b/acceptance/bundle/run/scripts/shell/envvar/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/shell/math/out.test.toml b/acceptance/bundle/run/scripts/shell/math/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/shell/math/out.test.toml +++ b/acceptance/bundle/run/scripts/shell/math/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/unique_keys/duplicate_resource_and_script_name_root/out.test.toml b/acceptance/bundle/run/scripts/unique_keys/duplicate_resource_and_script_name_root/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/unique_keys/duplicate_resource_and_script_name_root/out.test.toml +++ b/acceptance/bundle/run/scripts/unique_keys/duplicate_resource_and_script_name_root/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/unique_keys/duplicate_resource_and_script_subconfigurations/out.test.toml b/acceptance/bundle/run/scripts/unique_keys/duplicate_resource_and_script_subconfigurations/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/unique_keys/duplicate_resource_and_script_subconfigurations/out.test.toml +++ b/acceptance/bundle/run/scripts/unique_keys/duplicate_resource_and_script_subconfigurations/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/scripts/unique_keys/duplicate_script_names_in_subconfiguration/out.test.toml b/acceptance/bundle/run/scripts/unique_keys/duplicate_script_names_in_subconfiguration/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/scripts/unique_keys/duplicate_script_names_in_subconfiguration/out.test.toml +++ b/acceptance/bundle/run/scripts/unique_keys/duplicate_script_names_in_subconfiguration/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run/state-wiped/out.test.toml b/acceptance/bundle/run/state-wiped/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run/state-wiped/out.test.toml +++ b/acceptance/bundle/run/state-wiped/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/allowed/regular_user/out.test.toml b/acceptance/bundle/run_as/allowed/regular_user/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/allowed/regular_user/out.test.toml +++ b/acceptance/bundle/run_as/allowed/regular_user/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/allowed/service_principal/out.test.toml b/acceptance/bundle/run_as/allowed/service_principal/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/allowed/service_principal/out.test.toml +++ b/acceptance/bundle/run_as/allowed/service_principal/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/empty_override/out.test.toml b/acceptance/bundle/run_as/empty_override/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/empty_override/out.test.toml +++ b/acceptance/bundle/run_as/empty_override/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/empty_run_as/out.test.toml b/acceptance/bundle/run_as/empty_run_as/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/empty_run_as/out.test.toml +++ b/acceptance/bundle/run_as/empty_run_as/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/empty_run_as_dict/out.test.toml b/acceptance/bundle/run_as/empty_run_as_dict/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/empty_run_as_dict/out.test.toml +++ b/acceptance/bundle/run_as/empty_run_as_dict/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/empty_sp/out.test.toml b/acceptance/bundle/run_as/empty_sp/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/empty_sp/out.test.toml +++ b/acceptance/bundle/run_as/empty_sp/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/empty_user/out.test.toml b/acceptance/bundle/run_as/empty_user/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/empty_user/out.test.toml +++ b/acceptance/bundle/run_as/empty_user/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/empty_user_and_sp/out.test.toml b/acceptance/bundle/run_as/empty_user_and_sp/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/empty_user_and_sp/out.test.toml +++ b/acceptance/bundle/run_as/empty_user_and_sp/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/invalid_both_sp_and_user/out.test.toml b/acceptance/bundle/run_as/invalid_both_sp_and_user/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/invalid_both_sp_and_user/out.test.toml +++ b/acceptance/bundle/run_as/invalid_both_sp_and_user/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/model_serving_different/out.test.toml b/acceptance/bundle/run_as/model_serving_different/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/model_serving_different/out.test.toml +++ b/acceptance/bundle/run_as/model_serving_different/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/model_serving_matching/out.test.toml b/acceptance/bundle/run_as/model_serving_matching/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/model_serving_matching/out.test.toml +++ b/acceptance/bundle/run_as/model_serving_matching/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/out.test.toml b/acceptance/bundle/run_as/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/out.test.toml +++ b/acceptance/bundle/run_as/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/pipelines/regular_user/out.test.toml b/acceptance/bundle/run_as/pipelines/regular_user/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/pipelines/regular_user/out.test.toml +++ b/acceptance/bundle/run_as/pipelines/regular_user/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/pipelines/service_principal/out.test.toml b/acceptance/bundle/run_as/pipelines/service_principal/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/pipelines/service_principal/out.test.toml +++ b/acceptance/bundle/run_as/pipelines/service_principal/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/run_as/pipelines_legacy/out.test.toml b/acceptance/bundle/run_as/pipelines_legacy/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/run_as/pipelines_legacy/out.test.toml +++ b/acceptance/bundle/run_as/pipelines_legacy/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/scripts/out.test.toml b/acceptance/bundle/scripts/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/scripts/out.test.toml +++ b/acceptance/bundle/scripts/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/scripts/restricted-execution/out.test.toml b/acceptance/bundle/scripts/restricted-execution/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/scripts/restricted-execution/out.test.toml +++ b/acceptance/bundle/scripts/restricted-execution/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/state/bad_json_local/out.test.toml b/acceptance/bundle/state/bad_json_local/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/state/bad_json_local/out.test.toml +++ b/acceptance/bundle/state/bad_json_local/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/state/basic/out.test.toml b/acceptance/bundle/state/basic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/state/basic/out.test.toml +++ b/acceptance/bundle/state/basic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/state/lineage_different/out.test.toml b/acceptance/bundle/state/lineage_different/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/state/lineage_different/out.test.toml +++ b/acceptance/bundle/state/lineage_different/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/state/out.test.toml b/acceptance/bundle/state/out.test.toml new file mode 100644 index 0000000000..fa2f11a596 --- /dev/null +++ b/acceptance/bundle/state/out.test.toml @@ -0,0 +1,11 @@ +Local = true +Cloud = false + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/bundle/state/state_present/out.test.toml b/acceptance/bundle/state/state_present/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/state/state_present/out.test.toml +++ b/acceptance/bundle/state/state_present/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/summary/missing-libraries-file-path/out.test.toml b/acceptance/bundle/summary/missing-libraries-file-path/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/summary/missing-libraries-file-path/out.test.toml +++ b/acceptance/bundle/summary/missing-libraries-file-path/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/summary/modified_status/out.test.toml b/acceptance/bundle/summary/modified_status/out.test.toml index 53563c84ff..7f2168dd64 100644 --- a/acceptance/bundle/summary/modified_status/out.test.toml +++ b/acceptance/bundle/summary/modified_status/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] VARIANT = ["empty_resources.yml", "no_resources.yml"] diff --git a/acceptance/bundle/summary/show-full-config/out.test.toml b/acceptance/bundle/summary/show-full-config/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/summary/show-full-config/out.test.toml +++ b/acceptance/bundle/summary/show-full-config/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/sync/dryrun/out.test.toml b/acceptance/bundle/sync/dryrun/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/sync/dryrun/out.test.toml +++ b/acceptance/bundle/sync/dryrun/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/sync/out.test.toml b/acceptance/bundle/sync/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/sync/out.test.toml +++ b/acceptance/bundle/sync/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/syncroot/dotdot-git/out.test.toml b/acceptance/bundle/syncroot/dotdot-git/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/syncroot/dotdot-git/out.test.toml +++ b/acceptance/bundle/syncroot/dotdot-git/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/syncroot/dotdot-nogit/out.test.toml b/acceptance/bundle/syncroot/dotdot-nogit/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/syncroot/dotdot-nogit/out.test.toml +++ b/acceptance/bundle/syncroot/dotdot-nogit/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-artifact-path-type/out.test.toml b/acceptance/bundle/telemetry/deploy-artifact-path-type/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-artifact-path-type/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-artifact-path-type/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-artifacts-variables/out.test.toml b/acceptance/bundle/telemetry/deploy-artifacts-variables/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-artifacts-variables/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-artifacts-variables/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-compute-type/out.test.toml b/acceptance/bundle/telemetry/deploy-compute-type/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-compute-type/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-compute-type/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-config-file-count/out.test.toml b/acceptance/bundle/telemetry/deploy-config-file-count/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-config-file-count/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-config-file-count/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-error/out.test.toml b/acceptance/bundle/telemetry/deploy-error/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-error/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-error/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-experimental/out.test.toml b/acceptance/bundle/telemetry/deploy-experimental/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-experimental/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-experimental/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-mode/out.test.toml b/acceptance/bundle/telemetry/deploy-mode/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-mode/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-mode/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-name-prefix/custom/out.test.toml b/acceptance/bundle/telemetry/deploy-name-prefix/custom/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-name-prefix/custom/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-name-prefix/custom/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-name-prefix/mode-development/out.test.toml b/acceptance/bundle/telemetry/deploy-name-prefix/mode-development/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-name-prefix/mode-development/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-name-prefix/mode-development/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-no-uuid/out.test.toml b/acceptance/bundle/telemetry/deploy-no-uuid/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-no-uuid/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-no-uuid/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-run-as/out.test.toml b/acceptance/bundle/telemetry/deploy-run-as/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-run-as/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-run-as/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-target-count/out.test.toml b/acceptance/bundle/telemetry/deploy-target-count/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-target-count/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-target-count/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-variable-count/out.test.toml b/acceptance/bundle/telemetry/deploy-variable-count/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-variable-count/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-variable-count/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy-whl-artifacts/out.test.toml b/acceptance/bundle/telemetry/deploy-whl-artifacts/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy-whl-artifacts/out.test.toml +++ b/acceptance/bundle/telemetry/deploy-whl-artifacts/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/telemetry/deploy/out.test.toml b/acceptance/bundle/telemetry/deploy/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/telemetry/deploy/out.test.toml +++ b/acceptance/bundle/telemetry/deploy/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates-machinery/helper_upper_lower/out.test.toml b/acceptance/bundle/templates-machinery/helper_upper_lower/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates-machinery/helper_upper_lower/out.test.toml +++ b/acceptance/bundle/templates-machinery/helper_upper_lower/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates-machinery/helper_username/out.test.toml b/acceptance/bundle/templates-machinery/helper_username/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates-machinery/helper_username/out.test.toml +++ b/acceptance/bundle/templates-machinery/helper_username/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates-machinery/helpers-error/out.test.toml b/acceptance/bundle/templates-machinery/helpers-error/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates-machinery/helpers-error/out.test.toml +++ b/acceptance/bundle/templates-machinery/helpers-error/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates-machinery/wrong-path/out.test.toml b/acceptance/bundle/templates-machinery/wrong-path/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates-machinery/wrong-path/out.test.toml +++ b/acceptance/bundle/templates-machinery/wrong-path/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates-machinery/wrong-url/out.test.toml b/acceptance/bundle/templates-machinery/wrong-url/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates-machinery/wrong-url/out.test.toml +++ b/acceptance/bundle/templates-machinery/wrong-url/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/dbt-sql/out.test.toml b/acceptance/bundle/templates/dbt-sql/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/dbt-sql/out.test.toml +++ b/acceptance/bundle/templates/dbt-sql/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/default-python/classic/out.test.toml b/acceptance/bundle/templates/default-python/classic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/default-python/classic/out.test.toml +++ b/acceptance/bundle/templates/default-python/classic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/default-python/combinations/classic/out.test.toml b/acceptance/bundle/templates/default-python/combinations/classic/out.test.toml index 378dee06b9..2eb344d0fd 100644 --- a/acceptance/bundle/templates/default-python/combinations/classic/out.test.toml +++ b/acceptance/bundle/templates/default-python/combinations/classic/out.test.toml @@ -1,6 +1,13 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + SERVERLESS = "no" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] DLT = ["yes", "no"] diff --git a/acceptance/bundle/templates/default-python/combinations/serverless/out.test.toml b/acceptance/bundle/templates/default-python/combinations/serverless/out.test.toml index 378dee06b9..2424cae892 100644 --- a/acceptance/bundle/templates/default-python/combinations/serverless/out.test.toml +++ b/acceptance/bundle/templates/default-python/combinations/serverless/out.test.toml @@ -1,6 +1,13 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + SERVERLESS = "yes" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] DLT = ["yes", "no"] diff --git a/acceptance/bundle/templates/default-python/fail-missing-uv/out.test.toml b/acceptance/bundle/templates/default-python/fail-missing-uv/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/default-python/fail-missing-uv/out.test.toml +++ b/acceptance/bundle/templates/default-python/fail-missing-uv/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/default-python/integration_classic/out.test.toml b/acceptance/bundle/templates/default-python/integration_classic/out.test.toml index 816e788f46..c5e21420ec 100644 --- a/acceptance/bundle/templates/default-python/integration_classic/out.test.toml +++ b/acceptance/bundle/templates/default-python/integration_classic/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] UV_PYTHON = ["3.9", "3.10", "3.11", "3.12", "3.13"] diff --git a/acceptance/bundle/templates/default-python/no-uc/out.test.toml b/acceptance/bundle/templates/default-python/no-uc/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/default-python/no-uc/out.test.toml +++ b/acceptance/bundle/templates/default-python/no-uc/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/default-python/serverless-customcatalog/out.test.toml b/acceptance/bundle/templates/default-python/serverless-customcatalog/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/default-python/serverless-customcatalog/out.test.toml +++ b/acceptance/bundle/templates/default-python/serverless-customcatalog/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/default-python/serverless/out.test.toml b/acceptance/bundle/templates/default-python/serverless/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/default-python/serverless/out.test.toml +++ b/acceptance/bundle/templates/default-python/serverless/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/default-sql/out.test.toml b/acceptance/bundle/templates/default-sql/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/default-sql/out.test.toml +++ b/acceptance/bundle/templates/default-sql/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/experimental-jobs-as-code/out.test.toml b/acceptance/bundle/templates/experimental-jobs-as-code/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/experimental-jobs-as-code/out.test.toml +++ b/acceptance/bundle/templates/experimental-jobs-as-code/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/lakeflow-pipelines/python/out.test.toml b/acceptance/bundle/templates/lakeflow-pipelines/python/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/lakeflow-pipelines/python/out.test.toml +++ b/acceptance/bundle/templates/lakeflow-pipelines/python/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/lakeflow-pipelines/sql/out.test.toml b/acceptance/bundle/templates/lakeflow-pipelines/sql/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/lakeflow-pipelines/sql/out.test.toml +++ b/acceptance/bundle/templates/lakeflow-pipelines/sql/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/pydabs/check-consistency/out.test.toml b/acceptance/bundle/templates/pydabs/check-consistency/out.test.toml index e3bb197e37..b770bb6665 100644 --- a/acceptance/bundle/templates/pydabs/check-consistency/out.test.toml +++ b/acceptance/bundle/templates/pydabs/check-consistency/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] INCLUDE_JOB = ["yes", "no"] diff --git a/acceptance/bundle/templates/pydabs/check-formatting/out.test.toml b/acceptance/bundle/templates/pydabs/check-formatting/out.test.toml index e3bb197e37..b770bb6665 100644 --- a/acceptance/bundle/templates/pydabs/check-formatting/out.test.toml +++ b/acceptance/bundle/templates/pydabs/check-formatting/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] INCLUDE_JOB = ["yes", "no"] diff --git a/acceptance/bundle/templates/pydabs/deploy-classic/out.test.toml b/acceptance/bundle/templates/pydabs/deploy-classic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/pydabs/deploy-classic/out.test.toml +++ b/acceptance/bundle/templates/pydabs/deploy-classic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/pydabs/init-classic/out.test.toml b/acceptance/bundle/templates/pydabs/init-classic/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/pydabs/init-classic/out.test.toml +++ b/acceptance/bundle/templates/pydabs/init-classic/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/telemetry/custom-template/out.test.toml b/acceptance/bundle/templates/telemetry/custom-template/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/telemetry/custom-template/out.test.toml +++ b/acceptance/bundle/templates/telemetry/custom-template/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/telemetry/dbt-sql/out.test.toml b/acceptance/bundle/templates/telemetry/dbt-sql/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/telemetry/dbt-sql/out.test.toml +++ b/acceptance/bundle/templates/telemetry/dbt-sql/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/telemetry/default-python/out.test.toml b/acceptance/bundle/templates/telemetry/default-python/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/telemetry/default-python/out.test.toml +++ b/acceptance/bundle/templates/telemetry/default-python/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/templates/telemetry/default-sql/out.test.toml b/acceptance/bundle/templates/telemetry/default-sql/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/templates/telemetry/default-sql/out.test.toml +++ b/acceptance/bundle/templates/telemetry/default-sql/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/trampoline/warning_message/out.test.toml b/acceptance/bundle/trampoline/warning_message/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/trampoline/warning_message/out.test.toml +++ b/acceptance/bundle/trampoline/warning_message/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/trampoline/warning_message_with_new_spark/out.test.toml b/acceptance/bundle/trampoline/warning_message_with_new_spark/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/trampoline/warning_message_with_new_spark/out.test.toml +++ b/acceptance/bundle/trampoline/warning_message_with_new_spark/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/trampoline/warning_message_with_old_spark/out.test.toml b/acceptance/bundle/trampoline/warning_message_with_old_spark/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/trampoline/warning_message_with_old_spark/out.test.toml +++ b/acceptance/bundle/trampoline/warning_message_with_old_spark/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/undefined_resources/out.test.toml b/acceptance/bundle/undefined_resources/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/undefined_resources/out.test.toml +++ b/acceptance/bundle/undefined_resources/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/upload/internal_server_error/out.test.toml b/acceptance/bundle/upload/internal_server_error/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/upload/internal_server_error/out.test.toml +++ b/acceptance/bundle/upload/internal_server_error/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/upload/timeout/out.test.toml b/acceptance/bundle/upload/timeout/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/upload/timeout/out.test.toml +++ b/acceptance/bundle/upload/timeout/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/user_agent/out.test.toml b/acceptance/bundle/user_agent/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/user_agent/out.test.toml +++ b/acceptance/bundle/user_agent/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/user_agent/simple/out.test.toml b/acceptance/bundle/user_agent/simple/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/user_agent/simple/out.test.toml +++ b/acceptance/bundle/user_agent/simple/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/dashboard_defaults/out.test.toml b/acceptance/bundle/validate/dashboard_defaults/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/dashboard_defaults/out.test.toml +++ b/acceptance/bundle/validate/dashboard_defaults/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/dashboard_required_name/out.test.toml b/acceptance/bundle/validate/dashboard_required_name/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/dashboard_required_name/out.test.toml +++ b/acceptance/bundle/validate/dashboard_required_name/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/dashboard_required_warehouse_id/out.test.toml b/acceptance/bundle/validate/dashboard_required_warehouse_id/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/dashboard_required_warehouse_id/out.test.toml +++ b/acceptance/bundle/validate/dashboard_required_warehouse_id/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/empty_resources/empty_def/out.test.toml b/acceptance/bundle/validate/empty_resources/empty_def/out.test.toml index d560f1de04..9ef6a39578 100644 --- a/acceptance/bundle/validate/empty_resources/empty_def/out.test.toml +++ b/acceptance/bundle/validate/empty_resources/empty_def/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + CONTENT1 = "" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/empty_resources/empty_dict/out.test.toml b/acceptance/bundle/validate/empty_resources/empty_dict/out.test.toml index d560f1de04..4daa5a6c10 100644 --- a/acceptance/bundle/validate/empty_resources/empty_dict/out.test.toml +++ b/acceptance/bundle/validate/empty_resources/empty_dict/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + CONTENT1 = " {}" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/empty_resources/null/out.test.toml b/acceptance/bundle/validate/empty_resources/null/out.test.toml index d560f1de04..0da016b04b 100644 --- a/acceptance/bundle/validate/empty_resources/null/out.test.toml +++ b/acceptance/bundle/validate/empty_resources/null/out.test.toml @@ -1,5 +1,12 @@ Local = true Cloud = false +[Env] + CONTENT1 = " null" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/empty_resources/with_grants/out.test.toml b/acceptance/bundle/validate/empty_resources/with_grants/out.test.toml index d560f1de04..90688b72e9 100644 --- a/acceptance/bundle/validate/empty_resources/with_grants/out.test.toml +++ b/acceptance/bundle/validate/empty_resources/with_grants/out.test.toml @@ -1,5 +1,13 @@ Local = true Cloud = false +[Env] + CONTENT1 = "" + CONTENT2 = "grants: []" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/empty_resources/with_permissions/out.test.toml b/acceptance/bundle/validate/empty_resources/with_permissions/out.test.toml index d560f1de04..701992bf03 100644 --- a/acceptance/bundle/validate/empty_resources/with_permissions/out.test.toml +++ b/acceptance/bundle/validate/empty_resources/with_permissions/out.test.toml @@ -1,5 +1,13 @@ Local = true Cloud = false +[Env] + CONTENT1 = "" + CONTENT2 = "permissions: []" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/enum/out.test.toml b/acceptance/bundle/validate/enum/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/enum/out.test.toml +++ b/acceptance/bundle/validate/enum/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/include_locations/out.test.toml b/acceptance/bundle/validate/include_locations/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/include_locations/out.test.toml +++ b/acceptance/bundle/validate/include_locations/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/job-references/out.test.toml b/acceptance/bundle/validate/job-references/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/job-references/out.test.toml +++ b/acceptance/bundle/validate/job-references/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/models/missing_name/out.test.toml b/acceptance/bundle/validate/models/missing_name/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/models/missing_name/out.test.toml +++ b/acceptance/bundle/validate/models/missing_name/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/models/user_id/out.test.toml b/acceptance/bundle/validate/models/user_id/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/models/user_id/out.test.toml +++ b/acceptance/bundle/validate/models/user_id/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/no_dashboard_etag/out.test.toml b/acceptance/bundle/validate/no_dashboard_etag/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/no_dashboard_etag/out.test.toml +++ b/acceptance/bundle/validate/no_dashboard_etag/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/presets_max_concurrent_runs/out.test.toml b/acceptance/bundle/validate/presets_max_concurrent_runs/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/presets_max_concurrent_runs/out.test.toml +++ b/acceptance/bundle/validate/presets_max_concurrent_runs/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/presets_name_prefix/out.test.toml b/acceptance/bundle/validate/presets_name_prefix/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/presets_name_prefix/out.test.toml +++ b/acceptance/bundle/validate/presets_name_prefix/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/presets_name_prefix_dev/out.test.toml b/acceptance/bundle/validate/presets_name_prefix_dev/out.test.toml index 54146af564..fecee06b1b 100644 --- a/acceptance/bundle/validate/presets_name_prefix_dev/out.test.toml +++ b/acceptance/bundle/validate/presets_name_prefix_dev/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["direct"] diff --git a/acceptance/bundle/validate/presets_tags/out.test.toml b/acceptance/bundle/validate/presets_tags/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/presets_tags/out.test.toml +++ b/acceptance/bundle/validate/presets_tags/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/required/out.test.toml b/acceptance/bundle/validate/required/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/required/out.test.toml +++ b/acceptance/bundle/validate/required/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/sync_patterns/out.test.toml b/acceptance/bundle/validate/sync_patterns/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/sync_patterns/out.test.toml +++ b/acceptance/bundle/validate/sync_patterns/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/var_in_bundle_name/out.test.toml b/acceptance/bundle/validate/var_in_bundle_name/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/var_in_bundle_name/out.test.toml +++ b/acceptance/bundle/validate/var_in_bundle_name/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/validate/volume_defaults/out.test.toml b/acceptance/bundle/validate/volume_defaults/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/validate/volume_defaults/out.test.toml +++ b/acceptance/bundle/validate/volume_defaults/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/arg-repeat/out.test.toml b/acceptance/bundle/variables/arg-repeat/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/arg-repeat/out.test.toml +++ b/acceptance/bundle/variables/arg-repeat/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex-cross-ref/out.test.toml b/acceptance/bundle/variables/complex-cross-ref/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex-cross-ref/out.test.toml +++ b/acceptance/bundle/variables/complex-cross-ref/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex-cycle-self/out.test.toml b/acceptance/bundle/variables/complex-cycle-self/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex-cycle-self/out.test.toml +++ b/acceptance/bundle/variables/complex-cycle-self/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex-cycle/out.test.toml b/acceptance/bundle/variables/complex-cycle/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex-cycle/out.test.toml +++ b/acceptance/bundle/variables/complex-cycle/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex-simple/out.test.toml b/acceptance/bundle/variables/complex-simple/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex-simple/out.test.toml +++ b/acceptance/bundle/variables/complex-simple/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex-transitive-deep/out.test.toml b/acceptance/bundle/variables/complex-transitive-deep/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex-transitive-deep/out.test.toml +++ b/acceptance/bundle/variables/complex-transitive-deep/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex-transitive-deeper/out.test.toml b/acceptance/bundle/variables/complex-transitive-deeper/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex-transitive-deeper/out.test.toml +++ b/acceptance/bundle/variables/complex-transitive-deeper/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex-transitive/out.test.toml b/acceptance/bundle/variables/complex-transitive/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex-transitive/out.test.toml +++ b/acceptance/bundle/variables/complex-transitive/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex-with-var-reference/out.test.toml b/acceptance/bundle/variables/complex-with-var-reference/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex-with-var-reference/out.test.toml +++ b/acceptance/bundle/variables/complex-with-var-reference/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex-within-complex/out.test.toml b/acceptance/bundle/variables/complex-within-complex/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex-within-complex/out.test.toml +++ b/acceptance/bundle/variables/complex-within-complex/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex/out.test.toml b/acceptance/bundle/variables/complex/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex/out.test.toml +++ b/acceptance/bundle/variables/complex/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/complex_multiple_files/out.test.toml b/acceptance/bundle/variables/complex_multiple_files/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/complex_multiple_files/out.test.toml +++ b/acceptance/bundle/variables/complex_multiple_files/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/cycle/out.test.toml b/acceptance/bundle/variables/cycle/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/cycle/out.test.toml +++ b/acceptance/bundle/variables/cycle/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/double_underscore/out.test.toml b/acceptance/bundle/variables/double_underscore/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/double_underscore/out.test.toml +++ b/acceptance/bundle/variables/double_underscore/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/empty/out.test.toml b/acceptance/bundle/variables/empty/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/empty/out.test.toml +++ b/acceptance/bundle/variables/empty/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/env_overrides/out.test.toml b/acceptance/bundle/variables/env_overrides/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/env_overrides/out.test.toml +++ b/acceptance/bundle/variables/env_overrides/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/file-defaults/out.test.toml b/acceptance/bundle/variables/file-defaults/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/file-defaults/out.test.toml +++ b/acceptance/bundle/variables/file-defaults/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/git-branch/out.test.toml b/acceptance/bundle/variables/git-branch/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/git-branch/out.test.toml +++ b/acceptance/bundle/variables/git-branch/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/host/out.test.toml b/acceptance/bundle/variables/host/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/host/out.test.toml +++ b/acceptance/bundle/variables/host/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/int/out.test.toml b/acceptance/bundle/variables/int/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/int/out.test.toml +++ b/acceptance/bundle/variables/int/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/issue_2436/out.test.toml b/acceptance/bundle/variables/issue_2436/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/issue_2436/out.test.toml +++ b/acceptance/bundle/variables/issue_2436/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/issue_3039_lookup_with_ref/out.test.toml b/acceptance/bundle/variables/issue_3039_lookup_with_ref/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/issue_3039_lookup_with_ref/out.test.toml +++ b/acceptance/bundle/variables/issue_3039_lookup_with_ref/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/prepend-workspace-var/out.test.toml b/acceptance/bundle/variables/prepend-workspace-var/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/prepend-workspace-var/out.test.toml +++ b/acceptance/bundle/variables/prepend-workspace-var/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/resolve-builtin/out.test.toml b/acceptance/bundle/variables/resolve-builtin/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/resolve-builtin/out.test.toml +++ b/acceptance/bundle/variables/resolve-builtin/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/resolve-empty/out.test.toml b/acceptance/bundle/variables/resolve-empty/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/resolve-empty/out.test.toml +++ b/acceptance/bundle/variables/resolve-empty/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/resolve-field-within-complex/out.test.toml b/acceptance/bundle/variables/resolve-field-within-complex/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/resolve-field-within-complex/out.test.toml +++ b/acceptance/bundle/variables/resolve-field-within-complex/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/resolve-nonstrings/out.test.toml b/acceptance/bundle/variables/resolve-nonstrings/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/resolve-nonstrings/out.test.toml +++ b/acceptance/bundle/variables/resolve-nonstrings/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/resolve-resources-fields/out.test.toml b/acceptance/bundle/variables/resolve-resources-fields/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/resolve-resources-fields/out.test.toml +++ b/acceptance/bundle/variables/resolve-resources-fields/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/resolve-vars-in-root-path/out.test.toml b/acceptance/bundle/variables/resolve-vars-in-root-path/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/resolve-vars-in-root-path/out.test.toml +++ b/acceptance/bundle/variables/resolve-vars-in-root-path/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/vanilla/out.test.toml b/acceptance/bundle/variables/vanilla/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/vanilla/out.test.toml +++ b/acceptance/bundle/variables/vanilla/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/var_in_var/out.test.toml b/acceptance/bundle/variables/var_in_var/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/var_in_var/out.test.toml +++ b/acceptance/bundle/variables/var_in_var/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/variable_overrides_in_target/out.test.toml b/acceptance/bundle/variables/variable_overrides_in_target/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/variable_overrides_in_target/out.test.toml +++ b/acceptance/bundle/variables/variable_overrides_in_target/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/variables/without_definition/out.test.toml b/acceptance/bundle/variables/without_definition/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/variables/without_definition/out.test.toml +++ b/acceptance/bundle/variables/without_definition/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/volume_path/invalid_file/out.test.toml b/acceptance/bundle/volume_path/invalid_file/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/volume_path/invalid_file/out.test.toml +++ b/acceptance/bundle/volume_path/invalid_file/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/volume_path/invalid_resource/out.test.toml b/acceptance/bundle/volume_path/invalid_resource/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/volume_path/invalid_resource/out.test.toml +++ b/acceptance/bundle/volume_path/invalid_resource/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/volume_path/invalid_root/out.test.toml b/acceptance/bundle/volume_path/invalid_root/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/volume_path/invalid_root/out.test.toml +++ b/acceptance/bundle/volume_path/invalid_root/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/volume_path/invalid_state/out.test.toml b/acceptance/bundle/volume_path/invalid_state/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/volume_path/invalid_state/out.test.toml +++ b/acceptance/bundle/volume_path/invalid_state/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/bundle/volume_path/valid/out.test.toml b/acceptance/bundle/volume_path/valid/out.test.toml index d560f1de04..64efe1080d 100644 --- a/acceptance/bundle/volume_path/valid/out.test.toml +++ b/acceptance/bundle/volume_path/valid/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + UV_PYTHON = "3.10" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/account/account-help/out.test.toml b/acceptance/cmd/account/account-help/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/account/account-help/out.test.toml +++ b/acceptance/cmd/account/account-help/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/auth/login/configure-serverless/out.test.toml b/acceptance/cmd/auth/login/configure-serverless/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/auth/login/configure-serverless/out.test.toml +++ b/acceptance/cmd/auth/login/configure-serverless/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/auth/login/nominal/out.test.toml b/acceptance/cmd/auth/login/nominal/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/auth/login/nominal/out.test.toml +++ b/acceptance/cmd/auth/login/nominal/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/auth/login/out.test.toml b/acceptance/cmd/auth/login/out.test.toml new file mode 100644 index 0000000000..6cc98f4f59 --- /dev/null +++ b/acceptance/cmd/auth/login/out.test.toml @@ -0,0 +1,10 @@ +Local = true +Cloud = false + +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + +[EnvMatrix] + DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct-exp"] diff --git a/acceptance/cmd/auth/token/out.test.toml b/acceptance/cmd/auth/token/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/auth/token/out.test.toml +++ b/acceptance/cmd/auth/token/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/patchwhl/out.test.toml b/acceptance/cmd/patchwhl/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/patchwhl/out.test.toml +++ b/acceptance/cmd/patchwhl/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/psql/completions/out.test.toml b/acceptance/cmd/psql/completions/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/psql/completions/out.test.toml +++ b/acceptance/cmd/psql/completions/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/psql/failing-connection/out.test.toml b/acceptance/cmd/psql/failing-connection/out.test.toml index 40bb0d1047..739354cb22 100644 --- a/acceptance/cmd/psql/failing-connection/out.test.toml +++ b/acceptance/cmd/psql/failing-connection/out.test.toml @@ -4,5 +4,10 @@ Cloud = false [GOOS] windows = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/psql/not-available/out.test.toml b/acceptance/cmd/psql/not-available/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/psql/not-available/out.test.toml +++ b/acceptance/cmd/psql/not-available/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/psql/simple/out.test.toml b/acceptance/cmd/psql/simple/out.test.toml index 40bb0d1047..739354cb22 100644 --- a/acceptance/cmd/psql/simple/out.test.toml +++ b/acceptance/cmd/psql/simple/out.test.toml @@ -4,5 +4,10 @@ Cloud = false [GOOS] windows = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/sync-from-file/out.test.toml b/acceptance/cmd/sync-from-file/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/sync-from-file/out.test.toml +++ b/acceptance/cmd/sync-from-file/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/sync-without-args/out.test.toml b/acceptance/cmd/sync-without-args/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/sync-without-args/out.test.toml +++ b/acceptance/cmd/sync-without-args/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/sync/dryrun/out.test.toml b/acceptance/cmd/sync/dryrun/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/sync/dryrun/out.test.toml +++ b/acceptance/cmd/sync/dryrun/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/sync/out.test.toml b/acceptance/cmd/sync/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/sync/out.test.toml +++ b/acceptance/cmd/sync/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/unknown-subcommand/out.test.toml b/acceptance/cmd/unknown-subcommand/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/unknown-subcommand/out.test.toml +++ b/acceptance/cmd/unknown-subcommand/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/workspace/apps/out.test.toml b/acceptance/cmd/workspace/apps/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/workspace/apps/out.test.toml +++ b/acceptance/cmd/workspace/apps/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/workspace/apps/run-local-node/out.test.toml b/acceptance/cmd/workspace/apps/run-local-node/out.test.toml index 54146af564..6149c27270 100644 --- a/acceptance/cmd/workspace/apps/run-local-node/out.test.toml +++ b/acceptance/cmd/workspace/apps/run-local-node/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["direct"] diff --git a/acceptance/cmd/workspace/apps/run-local/out.test.toml b/acceptance/cmd/workspace/apps/run-local/out.test.toml index 90061dedb1..5f52bdf1b9 100644 --- a/acceptance/cmd/workspace/apps/run-local/out.test.toml +++ b/acceptance/cmd/workspace/apps/run-local/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/cmd/workspace/create-scope/out.test.toml b/acceptance/cmd/workspace/create-scope/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/workspace/create-scope/out.test.toml +++ b/acceptance/cmd/workspace/create-scope/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/workspace/database/update-database-instance/out.test.toml b/acceptance/cmd/workspace/database/update-database-instance/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/workspace/database/update-database-instance/out.test.toml +++ b/acceptance/cmd/workspace/database/update-database-instance/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/workspace/queries/out.test.toml b/acceptance/cmd/workspace/queries/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/workspace/queries/out.test.toml +++ b/acceptance/cmd/workspace/queries/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/cmd/workspace/query-history/out.test.toml b/acceptance/cmd/workspace/query-history/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/cmd/workspace/query-history/out.test.toml +++ b/acceptance/cmd/workspace/query-history/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/help/out.test.toml b/acceptance/help/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/help/out.test.toml +++ b/acceptance/help/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/internal/materialized_config.go b/acceptance/internal/materialized_config.go index 3233d3907c..6131b724dc 100644 --- a/acceptance/internal/materialized_config.go +++ b/acceptance/internal/materialized_config.go @@ -17,6 +17,7 @@ type MaterializedConfig struct { RequiresUnityCatalog *bool `toml:"RequiresUnityCatalog,omitempty"` RequiresCluster *bool `toml:"RequiresCluster,omitempty"` RequiresWarehouse *bool `toml:"RequiresWarehouse,omitempty"` + Env map[string]string `toml:"Env,omitempty"` EnvMatrix map[string][]string `toml:"EnvMatrix,omitempty"` } @@ -32,6 +33,7 @@ func GenerateMaterializedConfig(config TestConfig) (string, error) { RequiresUnityCatalog: config.RequiresUnityCatalog, RequiresCluster: config.RequiresCluster, RequiresWarehouse: config.RequiresWarehouse, + Env: config.Env, EnvMatrix: config.EnvMatrix, } diff --git a/acceptance/panic/out.test.toml b/acceptance/panic/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/panic/out.test.toml +++ b/acceptance/panic/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/deploy/auto-approve/out.test.toml b/acceptance/pipelines/deploy/auto-approve/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/deploy/auto-approve/out.test.toml +++ b/acceptance/pipelines/deploy/auto-approve/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/deploy/create-pipeline/out.test.toml b/acceptance/pipelines/deploy/create-pipeline/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/deploy/create-pipeline/out.test.toml +++ b/acceptance/pipelines/deploy/create-pipeline/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/deploy/fail-on-active-runs/out.test.toml b/acceptance/pipelines/deploy/fail-on-active-runs/out.test.toml index 90061dedb1..5f52bdf1b9 100644 --- a/acceptance/pipelines/deploy/fail-on-active-runs/out.test.toml +++ b/acceptance/pipelines/deploy/fail-on-active-runs/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform"] diff --git a/acceptance/pipelines/deploy/force-lock/out.test.toml b/acceptance/pipelines/deploy/force-lock/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/deploy/force-lock/out.test.toml +++ b/acceptance/pipelines/deploy/force-lock/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/deploy/oss-spark-error/out.test.toml b/acceptance/pipelines/deploy/oss-spark-error/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/deploy/oss-spark-error/out.test.toml +++ b/acceptance/pipelines/deploy/oss-spark-error/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/deploy/render-diagnostics-warning/out.test.toml b/acceptance/pipelines/deploy/render-diagnostics-warning/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/deploy/render-diagnostics-warning/out.test.toml +++ b/acceptance/pipelines/deploy/render-diagnostics-warning/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/deploy/var-flag/out.test.toml b/acceptance/pipelines/deploy/var-flag/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/deploy/var-flag/out.test.toml +++ b/acceptance/pipelines/deploy/var-flag/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/destroy/auto-approve/out.test.toml b/acceptance/pipelines/destroy/auto-approve/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/destroy/auto-approve/out.test.toml +++ b/acceptance/pipelines/destroy/auto-approve/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/destroy/destroy-pipeline/out.test.toml b/acceptance/pipelines/destroy/destroy-pipeline/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/destroy/destroy-pipeline/out.test.toml +++ b/acceptance/pipelines/destroy/destroy-pipeline/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/destroy/force-lock/out.test.toml b/acceptance/pipelines/destroy/force-lock/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/destroy/force-lock/out.test.toml +++ b/acceptance/pipelines/destroy/force-lock/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/dry-run/dry-run-pipeline/out.test.toml b/acceptance/pipelines/dry-run/dry-run-pipeline/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/dry-run/dry-run-pipeline/out.test.toml +++ b/acceptance/pipelines/dry-run/dry-run-pipeline/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/dry-run/no-wait/out.test.toml b/acceptance/pipelines/dry-run/no-wait/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/dry-run/no-wait/out.test.toml +++ b/acceptance/pipelines/dry-run/no-wait/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/dry-run/restart/out.test.toml b/acceptance/pipelines/dry-run/restart/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/dry-run/restart/out.test.toml +++ b/acceptance/pipelines/dry-run/restart/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/e2e/out.test.toml b/acceptance/pipelines/e2e/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/e2e/out.test.toml +++ b/acceptance/pipelines/e2e/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/init/error-cases/out.test.toml b/acceptance/pipelines/init/error-cases/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/init/error-cases/out.test.toml +++ b/acceptance/pipelines/init/error-cases/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/init/python/out.test.toml b/acceptance/pipelines/init/python/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/init/python/out.test.toml +++ b/acceptance/pipelines/init/python/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/init/sql/out.test.toml b/acceptance/pipelines/init/sql/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/init/sql/out.test.toml +++ b/acceptance/pipelines/init/sql/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/install-pipelines-cli/out.test.toml b/acceptance/pipelines/install-pipelines-cli/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/install-pipelines-cli/out.test.toml +++ b/acceptance/pipelines/install-pipelines-cli/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/open/out.test.toml b/acceptance/pipelines/open/out.test.toml index 216969a761..5cd19cdfbf 100644 --- a/acceptance/pipelines/open/out.test.toml +++ b/acceptance/pipelines/open/out.test.toml @@ -5,5 +5,10 @@ Cloud = false linux = false windows = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/run/no-wait/out.test.toml b/acceptance/pipelines/run/no-wait/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/run/no-wait/out.test.toml +++ b/acceptance/pipelines/run/no-wait/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/run/refresh-flags/out.test.toml b/acceptance/pipelines/run/refresh-flags/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/run/refresh-flags/out.test.toml +++ b/acceptance/pipelines/run/refresh-flags/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/run/restart/out.test.toml b/acceptance/pipelines/run/restart/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/run/restart/out.test.toml +++ b/acceptance/pipelines/run/restart/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/run/run-info/out.test.toml b/acceptance/pipelines/run/run-info/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/run/run-info/out.test.toml +++ b/acceptance/pipelines/run/run-info/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/run/run-pipeline/out.test.toml b/acceptance/pipelines/run/run-pipeline/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/run/run-pipeline/out.test.toml +++ b/acceptance/pipelines/run/run-pipeline/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/stop/out.test.toml b/acceptance/pipelines/stop/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/stop/out.test.toml +++ b/acceptance/pipelines/stop/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/pipelines/version/out.test.toml b/acceptance/pipelines/version/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/pipelines/version/out.test.toml +++ b/acceptance/pipelines/version/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/IsServicePrincipal/out.test.toml b/acceptance/selftest/IsServicePrincipal/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/IsServicePrincipal/out.test.toml +++ b/acceptance/selftest/IsServicePrincipal/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/acc_repls/out.test.toml b/acceptance/selftest/acc_repls/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/acc_repls/out.test.toml +++ b/acceptance/selftest/acc_repls/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/basic/out.test.toml b/acceptance/selftest/basic/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/basic/out.test.toml +++ b/acceptance/selftest/basic/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/bundleconfig/different_target/out.test.toml b/acceptance/selftest/bundleconfig/different_target/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/bundleconfig/different_target/out.test.toml +++ b/acceptance/selftest/bundleconfig/different_target/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/bundleconfig/disabled1/out.test.toml b/acceptance/selftest/bundleconfig/disabled1/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/bundleconfig/disabled1/out.test.toml +++ b/acceptance/selftest/bundleconfig/disabled1/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/bundleconfig/disabled2/out.test.toml b/acceptance/selftest/bundleconfig/disabled2/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/bundleconfig/disabled2/out.test.toml +++ b/acceptance/selftest/bundleconfig/disabled2/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/bundleconfig/empty/out.test.toml b/acceptance/selftest/bundleconfig/empty/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/bundleconfig/empty/out.test.toml +++ b/acceptance/selftest/bundleconfig/empty/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/bundleconfig/matching/out.test.toml b/acceptance/selftest/bundleconfig/matching/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/bundleconfig/matching/out.test.toml +++ b/acceptance/selftest/bundleconfig/matching/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/bundleconfig/override/out.test.toml b/acceptance/selftest/bundleconfig/override/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/bundleconfig/override/out.test.toml +++ b/acceptance/selftest/bundleconfig/override/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/contains/out.test.toml b/acceptance/selftest/contains/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/contains/out.test.toml +++ b/acceptance/selftest/contains/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/diff/out.test.toml b/acceptance/selftest/diff/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/diff/out.test.toml +++ b/acceptance/selftest/diff/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/envmatrix/inner/out.test.toml b/acceptance/selftest/envmatrix/inner/out.test.toml index 21b27ccedb..3e62f77e17 100644 --- a/acceptance/selftest/envmatrix/inner/out.test.toml +++ b/acceptance/selftest/envmatrix/inner/out.test.toml @@ -1,6 +1,13 @@ Local = true Cloud = false +[Env] + A_REGULAR_VAR = "yes" + B_REGULAR_VAR = "answer:$A_REGULAR_VAR" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] B_REGULAR_VAR = ["hello"] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/envmatrix/out.test.toml b/acceptance/selftest/envmatrix/out.test.toml index 820b3f48eb..32db33ef41 100644 --- a/acceptance/selftest/envmatrix/out.test.toml +++ b/acceptance/selftest/envmatrix/out.test.toml @@ -1,6 +1,13 @@ Local = true Cloud = false +[Env] + A_REGULAR_VAR = "yes" + B_REGULAR_VAR = "answer:$A_REGULAR_VAR" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] FIRST = ["overriden-in-inner"] diff --git a/acceptance/selftest/envoutput/out.test.toml b/acceptance/selftest/envoutput/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/envoutput/out.test.toml +++ b/acceptance/selftest/envoutput/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/inject_error/out.test.toml b/acceptance/selftest/inject_error/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/inject_error/out.test.toml +++ b/acceptance/selftest/inject_error/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/log/out.test.toml b/acceptance/selftest/log/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/log/out.test.toml +++ b/acceptance/selftest/log/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/record_cloud/basic/out.test.toml b/acceptance/selftest/record_cloud/basic/out.test.toml index f474b1b917..e08914842f 100644 --- a/acceptance/selftest/record_cloud/basic/out.test.toml +++ b/acceptance/selftest/record_cloud/basic/out.test.toml @@ -1,5 +1,10 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/record_cloud/error/out.test.toml b/acceptance/selftest/record_cloud/error/out.test.toml index f474b1b917..e08914842f 100644 --- a/acceptance/selftest/record_cloud/error/out.test.toml +++ b/acceptance/selftest/record_cloud/error/out.test.toml @@ -1,5 +1,10 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/record_cloud/pipeline-crud/out.test.toml b/acceptance/selftest/record_cloud/pipeline-crud/out.test.toml index f474b1b917..e08914842f 100644 --- a/acceptance/selftest/record_cloud/pipeline-crud/out.test.toml +++ b/acceptance/selftest/record_cloud/pipeline-crud/out.test.toml @@ -1,5 +1,10 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/record_cloud/volume-io/out.test.toml b/acceptance/selftest/record_cloud/volume-io/out.test.toml index 7190c9b30b..d30fe9722e 100644 --- a/acceptance/selftest/record_cloud/volume-io/out.test.toml +++ b/acceptance/selftest/record_cloud/volume-io/out.test.toml @@ -2,5 +2,10 @@ Local = false Cloud = true RequiresUnityCatalog = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/record_cloud/workspace-file-io/out.test.toml b/acceptance/selftest/record_cloud/workspace-file-io/out.test.toml index f474b1b917..e08914842f 100644 --- a/acceptance/selftest/record_cloud/workspace-file-io/out.test.toml +++ b/acceptance/selftest/record_cloud/workspace-file-io/out.test.toml @@ -1,5 +1,10 @@ Local = false Cloud = true +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/server/out.test.toml b/acceptance/selftest/server/out.test.toml index bbcae619d6..1fb7aba7fb 100644 --- a/acceptance/selftest/server/out.test.toml +++ b/acceptance/selftest/server/out.test.toml @@ -1,6 +1,12 @@ Local = true Cloud = false +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] VARIABLE_A = ["one", "two"] diff --git a/acceptance/selftest/skip/out.test.toml b/acceptance/selftest/skip/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/skip/out.test.toml +++ b/acceptance/selftest/skip/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/slow/out.test.toml b/acceptance/selftest/slow/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/slow/out.test.toml +++ b/acceptance/selftest/slow/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/timeout/out.test.toml b/acceptance/selftest/timeout/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/timeout/out.test.toml +++ b/acceptance/selftest/timeout/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/timestamp/out.test.toml b/acceptance/selftest/timestamp/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/timestamp/out.test.toml +++ b/acceptance/selftest/timestamp/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/selftest/trap/out.test.toml b/acceptance/selftest/trap/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/selftest/trap/out.test.toml +++ b/acceptance/selftest/trap/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/telemetry/failure/out.test.toml b/acceptance/telemetry/failure/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/telemetry/failure/out.test.toml +++ b/acceptance/telemetry/failure/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/telemetry/partial-success/out.test.toml b/acceptance/telemetry/partial-success/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/telemetry/partial-success/out.test.toml +++ b/acceptance/telemetry/partial-success/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/telemetry/skipped/out.test.toml b/acceptance/telemetry/skipped/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/telemetry/skipped/out.test.toml +++ b/acceptance/telemetry/skipped/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/telemetry/success/out.test.toml b/acceptance/telemetry/success/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/telemetry/success/out.test.toml +++ b/acceptance/telemetry/success/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/telemetry/timeout/out.test.toml b/acceptance/telemetry/timeout/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/telemetry/timeout/out.test.toml +++ b/acceptance/telemetry/timeout/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/workspace/jobs/create-error/out.test.toml b/acceptance/workspace/jobs/create-error/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/workspace/jobs/create-error/out.test.toml +++ b/acceptance/workspace/jobs/create-error/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/workspace/jobs/create/out.test.toml b/acceptance/workspace/jobs/create/out.test.toml index d560f1de04..57b68d79ad 100644 --- a/acceptance/workspace/jobs/create/out.test.toml +++ b/acceptance/workspace/jobs/create/out.test.toml @@ -1,5 +1,10 @@ Local = true Cloud = false +[Env] + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/workspace/repos/create_with_provider/out.test.toml b/acceptance/workspace/repos/create_with_provider/out.test.toml index d560f1de04..b7b3902e74 100644 --- a/acceptance/workspace/repos/create_with_provider/out.test.toml +++ b/acceptance/workspace/repos/create_with_provider/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/workspace/repos/create_without_provider/out.test.toml b/acceptance/workspace/repos/create_without_provider/out.test.toml index d560f1de04..b7b3902e74 100644 --- a/acceptance/workspace/repos/create_without_provider/out.test.toml +++ b/acceptance/workspace/repos/create_without_provider/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/workspace/repos/delete_by_path/out.test.toml b/acceptance/workspace/repos/delete_by_path/out.test.toml index d560f1de04..b7b3902e74 100644 --- a/acceptance/workspace/repos/delete_by_path/out.test.toml +++ b/acceptance/workspace/repos/delete_by_path/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/workspace/repos/get_errors/out.test.toml b/acceptance/workspace/repos/get_errors/out.test.toml index d560f1de04..b7b3902e74 100644 --- a/acceptance/workspace/repos/get_errors/out.test.toml +++ b/acceptance/workspace/repos/get_errors/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"] diff --git a/acceptance/workspace/repos/update/out.test.toml b/acceptance/workspace/repos/update/out.test.toml index d560f1de04..b7b3902e74 100644 --- a/acceptance/workspace/repos/update/out.test.toml +++ b/acceptance/workspace/repos/update/out.test.toml @@ -1,5 +1,11 @@ Local = true Cloud = false +[Env] + MSYS_NO_PATHCONV = "1" + PYTHONDONTWRITEBYTECODE = "1" + PYTHONUNBUFFERED = "1" + PYTHONUTF8 = "1" + [EnvMatrix] DATABRICKS_BUNDLE_ENGINE = ["terraform", "direct"]