Skip to content

bundle: route config sync write-back to the block that defines each change - #6138

Merged
ilyakuz-db merged 28 commits into
mainfrom
configsync/split-list-write-back
Aug 4, 2026
Merged

bundle: route config sync write-back to the block that defines each change#6138
ilyakuz-db merged 28 commits into
mainfrom
configsync/split-list-write-back

Conversation

@ilyakuz-db

@ilyakuz-db ilyakuz-db commented Aug 3, 2026

Copy link
Copy Markdown
Contributor

Problem

A resource's sequence field (e.g. job tasks) can be written in two physical YAML regions: the top-level resources.* block and a targets. override, either possibly in its own included file. Loading merges them into one list and sorts keyed lists by key.

Config-sync resolves a change against that merged list, then writes it using the merged position, which causes out-of-bound indexing issues or issues with config corruption

Solution

bundle/configsync/blockindex.go maps every dyn.Location back to the block that owns it (not only a file), so a destination is looked up, and resolveSelectors rewrites merged positions into block-local ones.

Blocks are recovered by re-parsing the contributing files, because selecting a target destroys the distinction (it folds overrides into resources and drops targets). Re-parsing, rather than reloading via the mutator pipeline, avoids running the bundle's preinit script twice per sync.

Guiding rule: correct write > no write > wrong write. Anything ambiguous is left for a later run.

How a destination is picked:

  • element defined in one block → that block;
  • element defined in several → the field decides, since each field has its own location, so two fields of one task can go to two different blocks;
  • field itself defined in several → the definition that won the merge: the target override, or between two files in the same scope the one loaded later. Writing the shadowed copy would leave the effective value unchanged, so the sync would re-detect the same change on every run;
  • removing anything defined in several blocks → one deletion per definition, since it only disappears once every copy is gone. This applies to a field as well as an element: deleting only the winning copy lets the shadowed one take effect, so the next deploy restores the value the user just removed;
  • renaming → a replace of just the key field in every defining block, so other fields stay in their own scope. A key change arrives as an unlinked remove plus add; the two are paired by identity;
  • brand-new element or field → the block declaring the resource. A field a mutator inserted (e.g. OverrideCompute setting existing_cluster_id) counts as new: the value is present but carries no location, so no block declares it;
  • otherwise → left unapplied rather than written to a guess.

Also worth knowing: index bookkeeping is per block, so a removal in one block cannot shift positions in another; rename pairing refuses ambiguous matches in both directions; and a target override may legitimately span several files, so a block is identified by (scope, file)

Tests

New acceptance tests, a lot of test cases to cover everything that this refactoring touched, but all are local as we only need to cover config resolution

Follow-ups

Stacked on this branch, each independently reviewable:

Rebase onto main once this merges.

+ spark_version: [[DEFAULT_SPARK_VERSION]]
tasks:
- task_key: main
spark_version: [[DEFAULT_SPARK_VERSION]]

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is an expected change, the only changed field is still "spark_version" but new diff is less noisy,

+ node_type_id: [NODE_TYPE_ID]
+ num_workers: 1
+ spark_version: 13.3.x-snapshot-scala2.12
+ - task_key: b_task_renamed

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here, no changes in fields but diff is less noisy because task renames are now handled better

@ilyakuz-db
ilyakuz-db force-pushed the configsync/split-list-write-back branch 3 times, most recently from a1b1c01 to fe07316 Compare August 3, 2026 09:20
@eng-dev-ecosystem-bot

eng-dev-ecosystem-bot commented Aug 3, 2026

Copy link
Copy Markdown
Collaborator

Integration test report

Commit: 9b75e0b

Run: 30916185323

Env 💚​RECOVERED 🙈​SKIP ✅​pass 🙈​skip Time
💚​ aws linux 4 4 318 1084 5:24
💚​ aws windows 4 4 308 1086 9:07
💚​ azure linux 4 4 317 1084 5:32
💚​ azure windows 4 4 307 1086 8:56
💚​ gcp linux 1 5 318 1084 5:25
💚​ gcp windows 1 5 308 1086 9:16
8 interesting tests: 4 RECOVERED, 4 SKIP
Test Name aws linux aws windows azure linux azure windows gcp linux gcp windows
💚​ TestAccept 💚​R 💚​R 💚​R 💚​R 💚​R 💚​R
🙈​ TestAccept/bundle/invariant/no_drift 🙈​S 🙈​S 🙈​S 🙈​S 🙈​S 🙈​S
🙈​ TestAccept/bundle/resources/vector_search_endpoints/drift/recreated_same_name 🙈​S 🙈​S 🙈​S 🙈​S 🙈​S 🙈​S
🙈​ TestAccept/bundle/resources/vector_search_indexes/recreate/embedding_dimension 🙈​S 🙈​S 🙈​S 🙈​S 🙈​S 🙈​S
🙈​ TestAccept/ssh/connection 🙈​S 🙈​S 🙈​S 🙈​S 🙈​S 🙈​S
💚​ TestFetchRepositoryInfoAPI_FromRepo 💚​R 💚​R 💚​R 💚​R 🙈​S 🙈​S
💚​ TestFetchRepositoryInfoAPI_FromRepo/root 💚​R 💚​R 💚​R 💚​R
💚​ TestFetchRepositoryInfoAPI_FromRepo/subdir 💚​R 💚​R 💚​R 💚​R
Top 6 slowest tests (at least 2 minutes):
duration env testname
8:38 gcp windows TestAccept
8:18 aws windows TestAccept
8:16 azure windows TestAccept
3:00 azure linux TestAccept
2:57 aws linux TestAccept
2:56 gcp linux TestAccept

@ilyakuz-db
ilyakuz-db force-pushed the configsync/split-list-write-back branch 4 times, most recently from d21a301 to e81ef42 Compare August 3, 2026 12:15
@ilyakuz-db
ilyakuz-db force-pushed the configsync/split-list-write-back branch from e81ef42 to b09caf1 Compare August 3, 2026 12:38
@ilyakuz-db
ilyakuz-db force-pushed the configsync/split-list-write-back branch from 49300b3 to 8b3e0a8 Compare August 3, 2026 16:04
@ilyakuz-db
ilyakuz-db requested a review from denik August 3, 2026 19:01
@ilyakuz-db
ilyakuz-db force-pushed the configsync/split-list-write-back branch 4 times, most recently from 5ad76e5 to 9cac42f Compare August 4, 2026 09:42
@ilyakuz-db
ilyakuz-db force-pushed the configsync/split-list-write-back branch from 9cac42f to e803e40 Compare August 4, 2026 09:51
@ilyakuz-db
ilyakuz-db added this pull request to the merge queue Aug 4, 2026
Merged via the queue into main with commit e7fb0c7 Aug 4, 2026
23 checks passed
@ilyakuz-db
ilyakuz-db deleted the configsync/split-list-write-back branch August 4, 2026 15:21
@eng-dev-ecosystem-bot

Copy link
Copy Markdown
Collaborator

Integration test report

Commit: e7fb0c7

Run: 30991390981

Env ❌​FAIL 🤯​MISS 💚​RECOVERED 🙈​SKIP ✅​pass 🙈​skip Time
❌​ aws windows 8 254 4 1 880 900 347:12
❌​ azure windows 10 134 4 1 898 935 348:23
❌​ gcp windows 17 126 1 2 871 945 348:13
350 interesting tests: 311 MISS, 34 FAIL, 4 RECOVERED, 1 SKIP
Test Name aws windows azure windows gcp windows
🤯​ TestAccept 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/apps/job_permissions 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/apps/job_permissions/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/apps/job_permissions/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/artifacts/artifact_path_with_volume/volume_doesnot_exist 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/artifacts/artifact_path_with_volume/volume_doesnot_exist/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/artifacts/artifact_path_with_volume/volume_doesnot_exist/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/artifacts/artifact_path_with_volume/volume_not_deployed 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/artifacts/artifact_path_with_volume/volume_not_deployed/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/artifacts/artifact_path_with_volume/volume_not_deployed/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/empty-bundle 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/empty-bundle/DATABRICKS_BUNDLE_ENABLE_EXPERIMENTAL_YAML_SYNC=/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/empty-bundle/DATABRICKS_BUNDLE_ENABLE_EXPERIMENTAL_YAML_SYNC=/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/empty-bundle/DATABRICKS_BUNDLE_ENABLE_EXPERIMENTAL_YAML_SYNC=true/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/empty-bundle/DATABRICKS_BUNDLE_ENABLE_EXPERIMENTAL_YAML_SYNC=true/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/files/no-snapshot-sync 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/files/no-snapshot-sync/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/files/no-snapshot-sync/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/mlops-stacks 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/mlops-stacks/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/mlops-stacks/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/snapshot-comparison 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/snapshot-comparison/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/spark-jar-task 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/spark-jar-task/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deploy/spark-jar-task/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deployment/bind/alert 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deployment/bind/alert/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/deployment/bind/alert/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
❌​ TestAccept/bundle/integration_whl/interactive_cluster ✅​p ✅​p ❌​F
❌​ TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p ✅​p ❌​F
❌​ TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version ✅​p ✅​p ❌​F
❌​ TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=direct/DATA_SECURITY_MODE=SINGLE_USER ✅​p ✅​p ❌​F
❌​ TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=SINGLE_USER ✅​p ✅​p ❌​F
❌​ TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=USER_ISOLATION ✅​p ✅​p ❌​F
💚​ TestAccept/bundle/invariant/no_drift 💚​R 💚​R 💚​R
❌​ TestAccept/bundle/resources/apps/inline_config ❌​F ✅​p ✅​p
❌​ TestAccept/bundle/resources/apps/inline_config/DATABRICKS_BUNDLE_ENGINE=direct ❌​F ✅​p ✅​p
❌​ TestAccept/bundle/resources/apps/lifecycle-started-omitted ❌​F ✅​p ✅​p
❌​ TestAccept/bundle/resources/apps/lifecycle-started-omitted/DATABRICKS_BUNDLE_ENGINE=direct ❌​F ✅​p ✅​p
❌​ TestAccept/bundle/resources/dashboards/change-name ✅​p ❌​F ✅​p
❌​ TestAccept/bundle/resources/dashboards/change-name/DATABRICKS_BUNDLE_ENGINE=direct ✅​p ❌​F ✅​p
❌​ TestAccept/bundle/resources/dashboards/change-name/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p ❌​F ✅​p
🤯​ TestAccept/bundle/resources/dashboards/delete-trashed-out-of-band ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/dashboards/delete-trashed-out-of-band/DATABRICKS_BUNDLE_ENGINE=direct ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/dashboards/delete-trashed-out-of-band/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/dashboards/destroy ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/dashboards/destroy/DATABRICKS_BUNDLE_ENGINE=direct ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/dashboards/destroy/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/dashboards/detect-change ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/dashboards/detect-change/DATABRICKS_BUNDLE_ENGINE=direct ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/dashboards/detect-change/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/dashboards/nested-folders ✅​p 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/dashboards/nested-folders/DATABRICKS_BUNDLE_ENGINE=direct ✅​p 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/dashboards/nested-folders/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/dashboards/simple ✅​p 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/dashboards/simple/DATABRICKS_BUNDLE_ENGINE=direct ✅​p 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/dashboards/simple/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/dashboards/simple_outside_bundle_root ✅​p 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/dashboards/simple_outside_bundle_root/DATABRICKS_BUNDLE_ENGINE=direct ✅​p 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/dashboards/simple_outside_bundle_root/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p 🤯​M ✅​p
❌​ TestAccept/bundle/resources/grants/schemas/all_privileges ✅​p ❌​F ✅​p
❌​ TestAccept/bundle/resources/grants/schemas/all_privileges/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p ❌​F ✅​p
🤯​ TestAccept/bundle/resources/grants/schemas/change_privilege ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/grants/schemas/change_privilege/DATABRICKS_BUNDLE_ENGINE=direct ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/grants/schemas/change_privilege/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p ✅​p 🤯​M
❌​ TestAccept/bundle/resources/grants/schemas/duplicate_principals ❌​F ❌​F 🤯​M
❌​ TestAccept/bundle/resources/grants/schemas/duplicate_principals/DATABRICKS_BUNDLE_ENGINE=direct ✅​p ❌​F 🤯​M
❌​ TestAccept/bundle/resources/grants/schemas/duplicate_principals/DATABRICKS_BUNDLE_ENGINE=terraform ❌​F ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/grants/schemas/duplicate_privileges ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/grants/schemas/duplicate_privileges/DATABRICKS_BUNDLE_ENGINE=direct ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/grants/schemas/duplicate_privileges/DATABRICKS_BUNDLE_ENGINE=terraform ✅​p ✅​p 🤯​M
🤯​ TestAccept/bundle/resources/grants/schemas/empty_array 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/grants/schemas/empty_array/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/grants/schemas/empty_array/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
❌​ TestAccept/bundle/resources/grants/schemas/out_of_band_principal 🤯​M 🤯​M ❌​F
❌​ TestAccept/bundle/resources/grants/schemas/out_of_band_principal/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ❌​F
🤯​ TestAccept/bundle/resources/grants/schemas/out_of_band_principal/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
❌​ TestAccept/bundle/resources/grants/schemas/remove_principal 🤯​M 🤯​M ❌​F
🤯​ TestAccept/bundle/resources/grants/schemas/remove_principal/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
❌​ TestAccept/bundle/resources/grants/schemas/remove_principal/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ❌​F
❌​ TestAccept/bundle/resources/grants/volumes 🤯​M 🤯​M ❌​F
❌​ TestAccept/bundle/resources/grants/volumes/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ❌​F
❌​ TestAccept/bundle/resources/grants/volumes/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ❌​F
🤯​ TestAccept/bundle/resources/jobs/alert-task 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/alert-task/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/alert-task/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/check-metadata 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/check-metadata/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/check-metadata/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/double-underscore-keys 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/double-underscore-keys/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/double-underscore-keys/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/fail-on-active-runs 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/fail-on-active-runs/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/fail-on-active-runs/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/no-git-provider 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/no-git-provider/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/no-git-provider/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/shared-root-path 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/shared-root-path/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/jobs/shared-root-path/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
❌​ TestAccept/bundle/resources/model_serving_endpoints/basic 🤯​M 🤯​M ❌​F
🤯​ TestAccept/bundle/resources/model_serving_endpoints/basic/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
❌​ TestAccept/bundle/resources/model_serving_endpoints/basic/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ❌​F
🤯​ TestAccept/bundle/resources/model_serving_endpoints/running-endpoint 🤯​M 🤯​M 🙈​s
🤯​ TestAccept/bundle/resources/model_serving_endpoints/running-endpoint/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/model_serving_endpoints/running-endpoint/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/models/basic 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/models/basic/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/models/basic/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/permissions/dashboards/create 🤯​M 🤯​M 🙈​s
🤯​ TestAccept/bundle/resources/permissions/dashboards/create/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/permissions/dashboards/create/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/permissions/factcheck 🤯​M 🤯​M 🙈​s
🤯​ TestAccept/bundle/resources/permissions/factcheck/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/permissions/factcheck/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/permissions/jobs/current_can_manage_run 🤯​M 🤯​M 🙈​s
🤯​ TestAccept/bundle/resources/permissions/jobs/current_can_manage_run/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/permissions/jobs/current_can_manage_run/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M
❌​ TestAccept/bundle/resources/permissions/jobs/delete_one 🤯​M 🤯​M ❌​F
🤯​ TestAccept/bundle/resources/permissions/jobs/delete_one/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
❌​ TestAccept/bundle/resources/permissions/jobs/delete_one/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ❌​F
🤯​ TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/with_permissions 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/with_permissions/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/with_permissions/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/without_permissions 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/without_permissions/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/without_permissions/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/pipelines/allow-duplicate-names 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/pipelines/allow-duplicate-names/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/pipelines/allow-duplicate-names/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M ✅​p
🤯​ TestAccept/bundle/resources/pipelines/auto-approve 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/resources/pipelines/auto-approve/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/resources/pipelines/auto-approve/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M ✅​p ✅​p
🤯​ TestAccept/bundle/resources/pipelines/lakeflow-pipeline 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/pipelines/lakeflow-pipeline/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/pipelines/lakeflow-pipeline/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/pipelines/recreate 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/pipelines/recreate/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/pipelines/recreate/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/pipelines/update 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/pipelines/update/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/pipelines/update/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/basic 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_branches/basic/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/basic/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/purge_on_delete 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_branches/purge_on_delete/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/purge_on_delete/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/purge_on_delete_transitions 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_branches/purge_on_delete_transitions/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/recreate 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_branches/recreate/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/recreate/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/replace_existing 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_branches/replace_existing/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/replace_existing/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/update_protected 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_branches/update_protected/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/update_protected/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/without_branch_id 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_branches/without_branch_id/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_branches/without_branch_id/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_catalogs/basic 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_catalogs/basic/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_catalogs/basic/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_catalogs/recreate 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_catalogs/recreate/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_catalogs/recreate/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/basic 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_databases/basic/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/basic/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/live_errors/bad_database_id 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_databases/live_errors/bad_database_id/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/live_errors/bad_role_ref 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_databases/live_errors/bad_role_ref/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/recreate 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_databases/recreate/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/recreate/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/replace_existing 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_databases/replace_existing/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/replace_existing/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/update 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_databases/update/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_databases/update/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_endpoints/basic 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_endpoints/basic/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_endpoints/basic/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_endpoints/recreate 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_endpoints/recreate/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_endpoints/replace_existing 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_endpoints/replace_existing/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_endpoints/replace_existing/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_endpoints/update_autoscaling 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_endpoints/update_autoscaling/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_endpoints/update_autoscaling/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_endpoints/without_endpoint_id 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_endpoints/without_endpoint_id/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_endpoints/without_endpoint_id/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/basic 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_projects/basic/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/basic/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/purge_on_delete 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_projects/purge_on_delete/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/purge_on_delete/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/recreate 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_projects/recreate/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/recreate/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/update_display_name 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_projects/update_display_name/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/update_display_name/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/without_project_id 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_projects/without_project_id/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_projects/without_project_id/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_roles/basic 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_roles/basic/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_roles/basic/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_roles/recreate 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_roles/recreate-postgres-role 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_roles/recreate-postgres-role/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_roles/recreate/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_roles/recreate/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_roles/replace_existing 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_roles/replace_existing/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_roles/replace_existing/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_roles/update 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_roles/update/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_roles/update/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_synced_tables/basic 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_synced_tables/basic/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_synced_tables/basic/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/postgres_synced_tables/recreate 🤯​M 🙈​s 🙈​s
🤯​ TestAccept/bundle/resources/postgres_synced_tables/recreate/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M
🤯​ TestAccept/bundle/resources/postgres_synced_tables/recreate/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M
🤯​ TestAccept/bundle/resources/quality_monitors/change_assets_dir 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/quality_monitors/change_assets_dir/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/quality_monitors/change_assets_dir/DATABRICKS_BUNDLE_ENGINE=terraform 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/quality_monitors/change_output_schema_name 🤯​M 🤯​M 🤯​M
🤯​ TestAccept/bundle/resources/quality_monitors/change_output_schema_name/DATABRICKS_BUNDLE_ENGINE=direct 🤯​M 🤯​M 🤯​M
Top 50 slowest tests (at least 2 minutes):
duration env testname
15:20 gcp windows TestAccept/bundle/resources/apps/lifecycle-started/DATABRICKS_BUNDLE_ENGINE=direct
15:02 aws windows TestAccept/bundle/resources/apps/lifecycle-started/DATABRICKS_BUNDLE_ENGINE=direct
14:34 azure windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=no/NBOOK=yes/PY=yes/READPLAN=
14:23 gcp windows TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=direct
13:21 azure windows TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=USER_ISOLATION
13:14 aws windows TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=terraform
13:03 azure windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=yes/NBOOK=yes/PY=no/READPLAN=
12:49 gcp windows TestAccept/bundle/resources/vector_search_indexes/schema_normalization/DATABRICKS_BUNDLE_ENGINE=direct
12:40 azure windows TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=yes/NBOOK=yes/PY=yes/READPLAN=
12:38 gcp windows TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=terraform
12:21 aws windows TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=USER_ISOLATION
12:18 azure windows TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=terraform
12:05 azure windows TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=direct/DATA_SECURITY_MODE=USER_ISOLATION
12:02 aws windows TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=direct
12:02 gcp windows TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=terraform
11:45 aws windows TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=terraform
11:27 azure windows TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=direct/DATA_SECURITY_MODE=SINGLE_USER
11:16 azure windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=no/PY=no/READPLAN=
10:59 azure windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=yes/NBOOK=no/PY=yes/READPLAN=
10:39 aws windows TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=direct
10:38 aws windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=no/PY=no/READPLAN=
10:37 aws windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=no/PY=yes/READPLAN=
10:29 gcp windows TestAccept/bundle/resources/experiments/basic/DATABRICKS_BUNDLE_ENGINE=direct
10:12 azure windows TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=direct/DLT=yes/NBOOK=yes/PY=no/READPLAN=1
10:12 aws windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=no/NBOOK=yes/PY=yes/READPLAN=1
9:59 azure windows TestAccept/bundle/resources/apps/lifecycle-started/DATABRICKS_BUNDLE_ENGINE=direct
9:56 aws windows TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=yes/NBOOK=no/PY=yes/READPLAN=
9:56 azure windows TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=direct/UV_PYTHON=3.12
9:55 gcp windows TestAccept/bundle/resources/clusters/lifecycle-started/DATABRICKS_BUNDLE_ENGINE=direct
9:46 aws windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=no/NBOOK=no/PY=yes/READPLAN=
9:46 gcp windows TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.12
9:37 aws windows TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=terraform
9:37 gcp windows TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=direct
9:30 azure windows TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=terraform
9:27 gcp windows TestAccept/bundle/resources/clusters/lifecycle-started-toggle/DATABRICKS_BUNDLE_ENGINE=direct
9:22 azure windows TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=direct
9:17 gcp windows TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=direct/UV_PYTHON=3.10
9:02 gcp windows TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform
8:59 aws windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=yes/NBOOK=no/PY=no/READPLAN=1
8:55 azure windows TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=direct/DLT=no/NBOOK=no/PY=yes/READPLAN=
8:49 azure windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=yes/NBOOK=yes/PY=yes/READPLAN=
8:44 aws windows TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=SINGLE_USER
8:41 gcp windows TestAccept/bundle/resources/clusters/run/spark_python_task/DATABRICKS_BUNDLE_ENGINE=terraform
8:40 azure windows TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=direct
8:34 aws windows TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=direct
8:34 gcp windows TestAccept/bundle/invariant/delete_idempotent/DATABRICKS_BUNDLE_ENGINE=direct/INPUT_CONFIG=cluster.yml.tmpl/READPLAN=
8:33 gcp windows TestAccept/bundle/resources/experiments/basic/DATABRICKS_BUNDLE_ENGINE=terraform
8:25 aws windows TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=no/PY=yes/READPLAN=
8:24 azure windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=no/PY=yes/READPLAN=
8:23 aws windows TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=yes/PY=no/READPLAN=
(110 table rows omitted to keep the report under 60000 bytes)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants