Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 3 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ Features
--------
* Detect Apache Doris and display its real version instead of the MySQL-compat placeholder.


Bug Fixes
---------
* Keep completion-menu Escape cancellation eager only in Vi mode so Emacs Alt-key bindings keep working while completions are open.
* Keep identifiers that start with `set` highlighted as names.
* Fix version display for MySQL distributions that return a plain `X.Y.Z` version string with no suffix (e.g. Homebrew MySQL).
* Speed up startup by skipping LLM imports when `MYCLI_LLM_OFF` is set.


Internal
Expand All @@ -20,7 +22,7 @@ Internal
* Add CI on macOS.
* Add limited CI on Windows.
* Add limited CI on Windows WSL.
* Speed up startup by skipping LLM imports when `MYCLI_LLM_OFF` is set.
* Skip flaky external-editor test in CI.


1.73.1 (2026/05/29)
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,8 @@ passenv = ['PYTEST_HOST',
'PYTEST_USER',
'PYTEST_PASSWORD',
'PYTEST_PORT',
'PYTEST_CHARSET']
'PYTEST_CHARSET',
'GITHUB_ACTION']
commands = [['uv', 'pip', 'install', '-e', '.[dev,ssh,llm]'],
['coverage', 'run', '-m', 'pytest', '-v', 'test'],
['coverage', 'report', '-m', '--sort=Miss'],
Expand Down
3 changes: 3 additions & 0 deletions test/features/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,9 @@ def before_scenario(context, arg):
# Skip scenarios marked skip_py312 when running on Python 3.12
if sys.version_info[:2] == (3, 12) and "skip_py312" in arg.tags:
arg.skip("Skipped on Python 3.12")
# Skip flaky editor test in CI
if os.getenv('GITHUB_ACTION') and 'skip_ci' in arg.tags:
arg.skip('Skipped in CI')
with open(test_log_file, "w") as f:
f.write("")
if arg.location.filename not in SELF_CONNECTING_FEATURES:
Expand Down
1 change: 1 addition & 0 deletions test/features/iocommands.feature
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
Feature: I/O commands

@skip_ci
Scenario: edit sql in file with external editor
When we start external editor providing a file name
and we type "select * from abc" in the editor
Expand Down
Loading