Revert "Add CLI banner"

This commit is contained in:
Jeremiah Lowin 2025-07-02 00:53:20 -04:00 committed by GitHub
commit 41359ec99d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 7 additions and 179 deletions

View file

@ -209,9 +209,9 @@ class TestDevCommand:
assert result.exit_code == 0
mock_run.assert_called_once()
# Check dependencies were passed correctly with no_banner=True
# Check dependencies were passed correctly
mock_build_uv.assert_called_once_with(
str(temp_python_file), None, ["extra_dep"], no_banner=True
str(temp_python_file), None, ["extra_dep"]
)
def test_dev_command_with_ui_port(self, temp_python_file):
@ -468,5 +468,4 @@ class TestRunCommand:
port=None,
log_level=None,
server_args=["--config", "config.json"],
show_banner=True,
)