Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
acc
andmake_acc_group
fixtures (#42). In this release, we have added two new fixtures,acc
andmake_acc_group
, to the open-source library. Theacc
fixture provides a Databricks AccountClient object for use in tests, which can interact with the Databricks account API and automatically determines the account host from theDATABRICKS_HOST
environment variable. Themake_acc_group
fixture is used for managing Databricks account groups, creating them with specified members and roles, and automatically deleting them after the test is complete. This fixture mirrors the behavior of themake_group
fixture but interacts with the account client instead of the workspace client. These fixtures enable more comprehensive integration tests for theacc
object and its various methods, enhancing the testing and management of Databricks account groups.