Skip to content

Commit 3e7262d

Browse files
committed
Tidy up
1 parent 1a16c63 commit 3e7262d

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

sqlmesh/core/console.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2625,8 +2625,7 @@ def show_row_diff(
26252625
self._write(row_diff)
26262626

26272627

2628-
# _CONSOLE: Console = NoopConsole()
2629-
_CONSOLE: Console = TerminalConsole()
2628+
_CONSOLE: Console = NoopConsole()
26302629

26312630

26322631
def set_console(console: Console) -> None:

tests/cli/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ def test_run_dev(runner, tmp_path, flag):
718718
# Confirm backfill occurs when we run non-backfilled dev env
719719
result = runner.invoke(cli, ["--log-file-dir", tmp_path, "--paths", tmp_path, "run", "dev"])
720720
assert result.exit_code == 0
721-
assert_model_batches_evaluated(result)
721+
assert_model_batches_executed(result)
722722

723723

724724
@time_machine.travel(FREEZE_TIME)
@@ -750,7 +750,7 @@ def test_run_cron_elapsed(runner, tmp_path):
750750
result = runner.invoke(cli, ["--log-file-dir", tmp_path, "--paths", tmp_path, "run"])
751751

752752
assert result.exit_code == 0
753-
assert_model_batches_evaluated(result)
753+
assert_model_batches_executed(result)
754754

755755

756756
def test_clean(runner, tmp_path):

0 commit comments

Comments
 (0)