Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ct 738/dbt debug log fix #6541

Merged
merged 18 commits into from
Jan 21, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge main. Resolve conflicts.
  • Loading branch information
VersusFacit committed Jan 19, 2023
commit a3aca7e8c4c06d0ed927839fc0d3a6ab06a5228b
2 changes: 1 addition & 1 deletion core/dbt/task/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
NoNodesSelected,
ListRunDetails,
)
from dbt.exceptions import RuntimeException, InternalException
from dbt.exceptions import DbtRuntimeError, DbtInternalError


class ListTask(GraphRunnableTask):
Expand Down
28 changes: 14 additions & 14 deletions tests/unit/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,21 +383,21 @@ def test_event_codes(self):
FlushEventsFailure(),
TrackingInitializeFailure(),
RunResultWarningMessage(),
# TODO fix these
DebugEnvironmentDetails(msg=""),
DebugDependenciesDetails(msg=""),
DebugDependenciesSuccess(msg=""),
DebugDependenciesFailure(msg=""),
DebugConfigurationDetails(msg=""),
DebugConfigurationSuccess(msg=""),
DebugConfigurationFailure(msg=""),
DebugConnectionDetails(msg=""),
DebugConnectionSuccess(msg=""),
DebugConnectionFailure(msg=""),
DebugRunSuccess(msg=""),
DebugRunFailure(msg=""),
DebugMiscMessages(msg=""),
ListRunDetails(msg=""),

# DebugDependenciesDetails(msg=""),
# DebugDependenciesSuccess(msg=""),
# DebugDependenciesFailure(msg=""),
# DebugConfigurationDetails(msg=""),
# DebugConfigurationSuccess(msg=""),
# DebugConfigurationFailure(msg=""),
# DebugConnectionDetails(msg=""),
# DebugConnectionSuccess(msg=""),
# DebugConnectionFailure(msg=""),
# DebugRunSuccess(msg=""),
# DebugRunFailure(msg=""),
# DebugMiscMessages(msg=""),
# ListRunDetails(msg=""),
# T - tests ======================
IntegrationTestInfo(),
IntegrationTestDebug(),
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.