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.
make_query()parameter name (#61). Themake_query()fixture's documentation has been updated to correct the name of thequeryparameter tosql_query. Thesql_queryparameter is used to specify the SQL query stored in the fixture, with the default value being "SELECT * FROM ". This change aims to enhance clarity and consistency in the naming of the argument, making it easier for users of themake_query()fixture to comprehend its purpose and usage. By correcting the parameter name, the documentation provides a clearer and more consistent user experience.createfunction incatalog.pynow appends a random string to "dummy_t", "dummy_s", ordummy_cfor table, schema, and catalog names, respectively, instead of using "ucx_t", "ucx_S", and "ucx_C". Thetest_catalog_fixturefunction has also been updated to replacedummywithdummy_canddummy_sfor catalogs and schemas. Additionally, the description of a test query inredash.pyhas been updated to remove the reference to UCX. Lastly, fixture names in the unit tests for a catalog have been updated to usedummyinstead of "ucx". These changes improve the independence of the testing process by removing technology-specific references, without affecting functionality.watchdog_remove_afterfixture has been added to the README file for documentation. Themake_storage_credentialfixture has been updated to include a new parameter,watchdog_remove_after, which specifies the time at which the storage credential should be removed by the watchdog. Thecreatefunction has been updated to accept this parameter and adds it as a comment to the storage credential. Theremovefunction remains unmodified. The related fixtures section has been updated to include the newwatchdog_remove_afterfixture. This change was co-authored by Eric Vergnaud, but please note that it has not been tested yet.make_jobto runSparkPythonTask(#60). Themake_jobfixture has been extended to support runningSparkPythonTaskin addition to notebook tasks. A newmake_workspace_filefixture has been added to create and manage Python files in the workspace. Themake_jobfixture now supports SQL notebooks and files and includes atask_typeparameter to specify the type of task to run and aninstance_pool_idparameter to reuse an instance pool for faster job execution during integration tests. Additionally, unit and integration tests have been added to ensure the proper functioning of the new and modified fixtures. These changes allow for more flexible and efficient testing of Databricks jobs with different task types and configurations. Themake_notebookfixture has also been updated to accept acontentparameter for creating notebooks with custom content. TheLanguageenum from thedatabricks.sdk.service.workspacemodule is used to specify the language of a notebook or workspace file.