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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
- id: trailing-whitespace
- id: check-added-large-files
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.22
rev: v0.16.0
hooks:
- id: ruff
- id: ruff-format
Expand Down
2 changes: 1 addition & 1 deletion pyprql/tests/test_magic.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def test_json_in_select(ip):
def test_close_connection(ip):
# TODO: change this to testing run_prql
connections = run_sql(ip, "%sql -l")
connection_name = list(connections)[0]
connection_name = next(iter(connections))
run_sql(ip, f"%sql -x {connection_name}")
connections_afterward = run_sql(ip, "%sql -l")
assert connection_name not in connections_afterward
Expand Down