We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c67520 commit 933292eCopy full SHA for 933292e
tests/unit/test_install.py
@@ -1,5 +1,6 @@
1
import io
2
import json
3
+import logging
4
from datetime import datetime, timedelta
5
from unittest.mock import MagicMock, create_autospec, patch
6
@@ -301,6 +302,8 @@ def result():
301
302
ws.jobs.wait_get_run_job_terminated_or_skipped.side_effect = OperationFailed("does not compute")
303
install_state = InstallState.from_installation(mock_installation_with_jobs)
304
installer = DeployedWorkflows(ws, install_state, timedelta(seconds=1))
305
+ logger = logging.getLogger("databricks.labs.ucx.installer.workflows")
306
+ logger.setLevel(logging.DEBUG)
307
with pytest.raises(Unknown) as failure:
308
installer.run_workflow("assessment")
309
0 commit comments