Fixed Trailing Slashes in cp command + added unit tests
Fixes: #2835
Changes
Fixed handling of trailing directory separators in the cp command. When a target path ends with / or \, the command now validates that the directory exists before copying. If the directory doesn't exist, it returns a clear error message instead of failing later.
Added a helper function hasTrailingDirSeparator to detect trailing directory separators for both Unix-style (/) and Windows-style (\) paths.
Why
Previously, the cp command didn't properly handle trailing directory separators. When users specified a target path like target/dir/ (expecting it to be treated as a directory), the command would not validate that the directory exists first, leading to confusing error messages later in the copy process. This change ensures that trailing directory separators are explicitly treated as indicating a directory target, and validates that the directory exists upfront.
Tests
Added unit tests in integration/cmd/fs/cp_test.go:
TestFsCpFileToNonExistentDir: Tests copying files to both existing and non-existent directories with trailing slashesTestFsCpFileToNonExistentDirWindowsPaths: Windows-specific tests for trailing backslashes (\) and forward slashes (/) on Windows
The tests verify that:
- Copying to an existing directory with a trailing separator succeeds
- Copying to a non-existent directory with a trailing separator returns an appropriate error message
- Both Unix-style (
/) and Windows-style (\) separators are handled correctly
Hey @shreyas-goenka
Can you review this pr
Hi @varundeepsaini ! Thanks for the PR! Contributing to CLI requires a signed CLA If that's something you're willing to do, please reach out with a request to sign the CLA to [email protected], and we will take it from there.
Thank you!
Hey @andrewnester
Have sent the email
@andrewnester Pushed changes
@andrewnester any idea why the integration tests havent run yet ?
@varundeepsaini I manually triggered integration tests, they should run now
Commit: https://github.com/databricks/cli/pull/3921/commits/b25ff1cedac563018a784ee5f050fd9d5ee7cad8
| Env | πβflaky | πβRECOVERED | πβSKIP | β βpass | πβskip | Time | |
|---|---|---|---|---|---|---|---|
| πβ | aws linux | 3 | 6 | 2 | 366 | 620 | 18:33 |
| πβ | aws windows | 4 | 7 | 2 | 366 | 618 | 18:39 |
| πβ | aws-ucws linux | 7 | 2 | 511 | 505 | 44:08 | |
| πβ | aws-ucws windows | 7 | 2 | 513 | 503 | 40:41 | |
| πβ | azure linux | 8 | 1 | 4 | 360 | 619 | 69:28 |
| πβ | azure windows | 7 | 1 | 4 | 363 | 617 | 62:30 |
| πβ | azure-ucws linux | 1 | 4 | 507 | 504 | 33:23 | |
| πβ | azure-ucws windows | 2 | 4 | 508 | 502 | 39:49 | |
| πβ | gcp linux | 1 | 4 | 364 | 622 | 21:15 | |
| πβ | gcp windows | 1 | 4 | 366 | 620 | 23:55 |
27 failing tests:
| Test Name | aws linux | aws windows | aws-ucws linux | aws-ucws windows | azure linux | azure windows | azure-ucws linux | azure-ucws windows | gcp linux | gcp windows |
|---|---|---|---|---|---|---|---|---|---|---|
| TestAccept | πβf | πβR | πβR | πβR | πβR | πβR | πβR | πβf | πβR | πβR |
| TestAccept/bundle/deployment/bind/cluster | β βp | β βp | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp |
| TestAccept/bundle/resources/clusters/deploy/data_security_mode | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/resources/clusters/deploy/update-after-create | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct | β βp | β βp | β βp | β βp | πβf | πβf | β βp | β βp | β βp | β βp |
| TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp |
| TestAccept/bundle/resources/permissions | πβS | πβS | πβS | πβS | πβS | πβS | πβS | πβS | πβS | πβS |
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/with_permissions | πβR | πβR | πβR | πβR | πβS | πβS | πβS | πβS | πβS | πβS |
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/with_permissions/DATABRICKS_BUNDLE_ENGINE=direct | πβR | πβR | πβR | πβR | ||||||
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/with_permissions/DATABRICKS_BUNDLE_ENGINE=terraform | πβR | πβR | πβR | πβR | ||||||
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/without_permissions | πβR | πβR | πβR | πβR | πβS | πβS | πβS | πβS | πβS | πβS |
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/without_permissions/DATABRICKS_BUNDLE_ENGINE=direct | πβR | πβR | πβR | πβR | ||||||
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/without_permissions/DATABRICKS_BUNDLE_ENGINE=terraform | πβR | πβR | πβR | πβR | ||||||
| TestAccept/bundle/run/app-with-job | πβS | πβS | πβS | πβS | πβS | πβS | πβS | πβS | πβS | πβS |
| TestAccept/bundle/templates/default-python/combinations/classic | πβf | πβf | β βp | β βp | β βp | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=no/NBOOK=yes/PY=yes | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=yes/NBOOK=no/PY=yes | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=direct/DLT=yes/NBOOK=yes/PY=yes | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=no/PY=no | πβf | β βp | β βp | β βp | β βp | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=yes/PY=yes | β βp | πβf | β βp | β βp | β βp | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=yes/NBOOK=no/PY=no | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=yes/NBOOK=no/PY=yes | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/integration_classic | β βp | πβf | β βp | β βp | πβf | πβf | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=direct/UV_PYTHON=3.10 | β βp | πβf | β βp | β βp | β βp | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.11 | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp | β βp |
| TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.9 | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp | β βp | β βp |
Top 50 slowest tests (at least 2 minutes):
| duration | env | testname |
|---|---|---|
| 14:41 | azure windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 12:50 | azure-ucws windows | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
| 10:38 | azure windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 9:37 | azure-ucws windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 9:15 | azure linux | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
| 7:08 | azure-ucws windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 6:59 | azure windows | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
| 6:55 | azure-ucws windows | TestAccept/bundle/resources/synced_database_tables/basic |
| 6:34 | azure-ucws linux | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
| 6:00 | gcp windows | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
| 5:57 | gcp linux | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
| 5:49 | gcp linux | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 5:48 | gcp linux | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 5:33 | aws-ucws windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 5:30 | aws-ucws windows | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
| 5:29 | azure-ucws linux | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 5:22 | gcp windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 5:20 | gcp windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 5:10 | azure linux | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 5:09 | aws-ucws linux | TestAccept/bundle/resources/experiments/basic/DATABRICKS_BUNDLE_ENGINE=terraform |
| 5:06 | azure-ucws linux | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 4:52 | aws-ucws linux | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
| 4:27 | azure linux | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 4:25 | aws-ucws windows | TestAccept/bundle/resources/experiments/basic/DATABRICKS_BUNDLE_ENGINE=direct |
| 3:38 | aws-ucws linux | TestAccept/bundle/resources/registered_models/basic/DATABRICKS_BUNDLE_ENGINE=direct |
| 3:36 | aws-ucws linux | TestAccept/bundle/resources/jobs/fail-on-active-runs/DATABRICKS_BUNDLE_ENGINE=direct |
| 3:32 | azure-ucws linux | TestAccept/bundle/resources/synced_database_tables/basic |
| 3:10 | aws-ucws linux | TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=direct/DLT=no/NBOOK=yes/PY=yes |
| 3:01 | aws-ucws windows | TestAccept/bundle/resources/registered_models/basic/DATABRICKS_BUNDLE_ENGINE=terraform |
| 2:53 | aws-ucws linux | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 2:51 | aws-ucws linux | TestAccept/bundle/resources/registered_models/basic/DATABRICKS_BUNDLE_ENGINE=terraform |
| 2:48 | aws linux | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 2:48 | aws-ucws windows | TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.13 |
| 2:46 | aws-ucws linux | TestAccept/bundle/resources/models/basic/DATABRICKS_BUNDLE_ENGINE=terraform |
| 2:45 | aws-ucws windows | TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.9 |
| 2:45 | aws-ucws linux | TestAccept/bundle/resources/models/basic/DATABRICKS_BUNDLE_ENGINE=direct |
| 2:37 | aws-ucws windows | TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=terraform/UV_PYTHON=3.10 |
| 2:34 | aws-ucws linux | TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=no/NBOOK=yes/PY=yes |
| 2:34 | aws-ucws windows | TestAccept/bundle/resources/registered_models/basic/DATABRICKS_BUNDLE_ENGINE=direct |
| 2:26 | aws-ucws windows | TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=direct/UV_PYTHON=3.13 |
| 2:26 | aws linux | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 2:23 | aws windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 2:22 | aws windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 2:21 | aws windows | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
| 2:20 | aws-ucws windows | TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=direct/UV_PYTHON=3.10 |
| 2:20 | aws-ucws windows | TestAccept/bundle/templates/default-python/combinations/classic/DATABRICKS_BUNDLE_ENGINE=terraform/DLT=yes/NBOOK=no/PY=no |
| 2:17 | aws-ucws windows | TestAccept/bundle/templates/default-python/combinations/serverless/DATABRICKS_BUNDLE_ENGINE=direct/DLT=no/NBOOK=yes/PY=no |
| 2:16 | aws-ucws windows | TestAccept/bundle/templates/default-python/integration_classic/DATABRICKS_BUNDLE_ENGINE=direct/UV_PYTHON=3.12 |
| 2:15 | aws-ucws linux | TestAccept/bundle/resources/experiments/basic/DATABRICKS_BUNDLE_ENGINE=direct |
| 2:14 | aws linux | TestAccept/bundle/resources/clusters/deploy/data_security_mode/DATABRICKS_BUNDLE_ENGINE=direct |
@andrewnester There was a mismatch in the error string in the test have fixed that, tests working locally Can you re-run the checks
An authorized user can trigger integration tests manually by following the instructions below:
Trigger: go/deco-tests-run/cli
Inputs:
- PR number: 3921
- Commit SHA:
e6104fc86a707f83311d89f6bc76d6a3d31bf1bc
Checks will be approved automatically on success.
@andrewnester could you queue the integration tests
Commit: https://github.com/databricks/cli/commit/134c1a8a53ea169c893bb7f8ae309a91dedf3cfa
| Env | π¨βKNOWN | πβflaky | πβRECOVERED | πβSKIP | β βpass | πβskip | Time | |
|---|---|---|---|---|---|---|---|---|
| π¨β | aws linux | 7 | 3 | 1 | 401 | 607 | 44:20 | |
| π¨β | aws windows | 7 | 3 | 1 | 403 | 605 | 46:01 | |
| πβ | aws-ucws linux | 10 | 1 | 562 | 486 | 58:48 | ||
| πβ | aws-ucws windows | 10 | 1 | 564 | 484 | 56:06 | ||
| πβ | azure linux | 4 | 3 | 401 | 606 | 42:00 | ||
| πβ | azure windows | 3 | 3 | 3 | 401 | 604 | 55:25 | |
| πβ | azure-ucws linux | 4 | 3 | 558 | 485 | 55:32 | ||
| πβ | azure-ucws windows | 3 | 3 | 3 | 558 | 483 | 64:56 | |
| πβ | gcp linux | 4 | 3 | 388 | 612 | 45:50 | ||
| πβ | gcp windows | 3 | 1 | 3 | 390 | 610 | 58:55 |
15 failing tests:
| Test Name | aws linux | aws windows | aws-ucws linux | aws-ucws windows | azure linux | azure windows | azure-ucws linux | azure-ucws windows | gcp linux | gcp windows |
|---|---|---|---|---|---|---|---|---|---|---|
| TestAccept | π¨βK | π¨βK | πβR | πβR | πβR | πβf | πβR | πβf | πβR | πβf |
| TestAccept/bundle/resources/clusters/run/spark_python_task | β βp | β βp | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp |
| TestAccept/bundle/resources/clusters/run/spark_python_task/DATABRICKS_BUNDLE_ENGINE=terraform | β βp | β βp | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp |
| TestAccept/bundle/resources/permissions | πβS | πβS | πβS | πβS | πβS | πβS | πβS | πβS | πβS | πβS |
| TestAccept/bundle/resources/permissions/factcheck | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp | πβs | πβs |
| TestAccept/bundle/resources/permissions/factcheck/DATABRICKS_BUNDLE_ENGINE=terraform | β βp | β βp | β βp | β βp | β βp | πβf | β βp | β βp | ||
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/with_permissions | π¨βK | π¨βK | πβR | πβR | πβS | πβS | πβS | πβS | πβS | πβS |
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/with_permissions/DATABRICKS_BUNDLE_ENGINE=direct | π¨βK | π¨βK | πβR | πβR | ||||||
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/with_permissions/DATABRICKS_BUNDLE_ENGINE=terraform | π¨βK | π¨βK | πβR | πβR | ||||||
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/without_permissions | π¨βK | π¨βK | πβR | πβR | πβS | πβS | πβS | πβS | πβS | πβS |
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/without_permissions/DATABRICKS_BUNDLE_ENGINE=direct | π¨βK | π¨βK | πβR | πβR | ||||||
| TestAccept/bundle/resources/permissions/jobs/destroy_without_mgmtperms/without_permissions/DATABRICKS_BUNDLE_ENGINE=terraform | π¨βK | π¨βK | πβR | πβR | ||||||
| TestAccept/bundle/run/app-with-job | πβR | πβR | πβR | πβR | πβR | πβR | πβR | πβR | πβR | πβf |
| TestAccept/bundle/run/app-with-job/DATABRICKS_BUNDLE_ENGINE=direct | πβR | πβR | πβR | πβR | πβR | πβR | πβR | πβR | πβR | πβf |
| TestAccept/bundle/run/app-with-job/DATABRICKS_BUNDLE_ENGINE=terraform | πβR | πβR | πβR | πβR | πβR | πβR | πβR | πβR | πβR | πβR |
Top 50 slowest tests (at least 2 minutes):
| duration | env | testname |
|---|---|---|
| 14:45 | gcp windows | TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=terraform |
| 13:55 | azure windows | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=direct |
| 13:40 | gcp windows | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=terraform |
| 13:25 | gcp windows | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=direct |
| 13:12 | gcp windows | TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=SINGLE_USER |
| 13:08 | gcp linux | TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=SINGLE_USER |
| 11:44 | aws windows | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=direct |
| 11:18 | aws linux | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=terraform |
| 10:52 | aws windows | TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=terraform |
| 10:34 | azure-ucws windows | TestAccept/bundle/resources/clusters/run/spark_python_task/DATABRICKS_BUNDLE_ENGINE=direct |
| 10:24 | aws-ucws windows | TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=terraform |
| 10:00 | gcp linux | TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=terraform |
| 9:51 | aws-ucws linux | TestAccept/bundle/resources/model_serving_endpoints/running-endpoint/DATABRICKS_BUNDLE_ENGINE=terraform |
| 9:47 | aws-ucws windows | TestAccept/bundle/resources/model_serving_endpoints/running-endpoint/DATABRICKS_BUNDLE_ENGINE=terraform |
| 9:45 | aws-ucws linux | TestAccept/bundle/resources/model_serving_endpoints/running-endpoint/DATABRICKS_BUNDLE_ENGINE=direct |
| 9:41 | azure linux | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=direct |
| 9:31 | aws-ucws windows | TestAccept/bundle/resources/model_serving_endpoints/running-endpoint/DATABRICKS_BUNDLE_ENGINE=direct |
| 9:25 | aws windows | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=terraform |
| 9:12 | azure-ucws windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=terraform |
| 8:56 | azure-ucws windows | TestAccept/bundle/resources/clusters/deploy/update-after-create/DATABRICKS_BUNDLE_ENGINE=direct |
| 8:56 | azure-ucws windows | TestSparkJarTaskDeployAndRunOnVolumes/Databricks_Runtime_14.3_LTS |
| 8:49 | gcp linux | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=terraform |
| 8:48 | azure linux | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=terraform |
| 8:34 | aws-ucws linux | TestSparkJarTaskDeployAndRunOnVolumes/Databricks_Runtime_15.4_LTS |
| 8:30 | gcp linux | TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=USER_ISOLATION |
| 8:29 | azure windows | TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=SINGLE_USER |
| 8:22 | azure-ucws windows | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=terraform |
| 8:21 | azure-ucws linux | TestSparkJarTaskDeployAndRunOnVolumes/Databricks_Runtime_15.4_LTS |
| 8:21 | gcp windows | TestSparkJarTaskDeployAndRunOnWorkspace/Databricks_Runtime_15.4_LTS |
| 8:18 | aws linux | TestSparkJarTaskDeployAndRunOnWorkspace/Databricks_Runtime_15.4_LTS |
| 8:09 | azure-ucws linux | TestSparkJarTaskDeployAndRunOnVolumes/Databricks_Runtime_13.3_LTS |
| 8:07 | azure-ucws linux | TestAccept/bundle/resources/model_serving_endpoints/running-endpoint/DATABRICKS_BUNDLE_ENGINE=direct |
| 8:07 | gcp linux | TestAccept/bundle/integration_whl/base/DATABRICKS_BUNDLE_ENGINE=direct |
| 8:00 | gcp linux | TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=terraform |
| 7:58 | gcp windows | TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=terraform |
| 7:55 | gcp windows | TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=direct/DATA_SECURITY_MODE=USER_ISOLATION |
| 7:53 | azure-ucws windows | TestSparkJarTaskDeployAndRunOnVolumes/Databricks_Runtime_13.3_LTS |
| 7:50 | azure-ucws windows | TestSparkJarTaskDeployAndRunOnVolumes/Databricks_Runtime_15.4_LTS |
| 7:49 | azure windows | TestAccept/bundle/integration_whl/interactive_single_user/DATABRICKS_BUNDLE_ENGINE=terraform |
| 7:49 | azure-ucws linux | TestSparkJarTaskDeployAndRunOnVolumes/Databricks_Runtime_14.3_LTS |
| 7:47 | gcp windows | TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=direct |
| 7:46 | aws windows | TestSparkJarTaskDeployAndRunOnWorkspace/Databricks_Runtime_15.4_LTS |
| 7:46 | gcp linux | TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=direct |
| 7:46 | azure windows | TestSparkJarTaskDeployAndRunOnWorkspace/Databricks_Runtime_14.3_LTS |
| 7:44 | aws-ucws windows | TestSparkJarTaskDeployAndRunOnVolumes/Databricks_Runtime_15.4_LTS |
| 7:42 | aws windows | TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=terraform |
| 7:42 | aws windows | TestAccept/bundle/integration_whl/interactive_cluster/DATABRICKS_BUNDLE_ENGINE=direct |
| 7:41 | gcp windows | TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=terraform/DATA_SECURITY_MODE=USER_ISOLATION |
| 7:41 | azure-ucws windows | TestAccept/bundle/resources/model_serving_endpoints/running-endpoint/DATABRICKS_BUNDLE_ENGINE=terraform |
| 7:39 | gcp linux | TestAccept/bundle/integration_whl/interactive_cluster_dynamic_version/DATABRICKS_BUNDLE_ENGINE=direct/DATA_SECURITY_MODE=USER_ISOLATION |