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
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ Bug Fixes
* Don't create `~/.myclirc` if the user adopted the XDG layout for myclirc.


Internal
---------
* Make flaky `/watch` test even more lenient for CI.


2.3.0 (2026/07/16)
==============

Expand Down
6 changes: 4 additions & 2 deletions test/pytests/test_special_iocommands.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,9 +396,11 @@ def test_watch_query_full():
expected_value = "1"
query = f"SELECT {expected_value}"
expected_preamble = f"> {query}"
# Python 3.14 is skipping ahead to 6, 7, 8, or 9
# Faster Python 3.14 + OS combinations are skipping ahead as fast as 10
# Python 3.11 is as slow as 3
expected_results = [3, 4, 5, 6, 7, 8, 9]
# todo: something is wrong here, but the expected_results are liberal,
# to keep from being flaky in CI
expected_results = [3, 4, 5, 6, 7, 8, 9, 10]
ctrl_c_process = send_ctrl_c(wait_interval)
with db_connection().cursor() as cur:
results = list(mycli.packages.special.iocommands.watch_query(arg=f"{watch_seconds} {query}", cur=cur))
Expand Down
Loading