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: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ repos:
hooks:
- id: codespell
- repo: 'https://github.com/astral-sh/ruff-pre-commit'
rev: v0.15.8
rev: v0.15.9
hooks:
- id: ruff
args:
- '--fix'
- id: ruff-format
- repo: 'https://github.com/pre-commit/mirrors-mypy'
rev: v1.19.1
rev: v1.20.0
hooks:
- id: mypy
additional_dependencies:
Expand Down
2 changes: 2 additions & 0 deletions tests/plugins/distributed_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ def _factory() -> str:
# The target is already set by default
del x.__proxy_target__
assert x == test_obj
assert isinstance(x, Proxy)
assert not store.exists(get_key(x))


Expand Down Expand Up @@ -238,6 +239,7 @@ def _foo(a: int, b: str, *, c: int, d: str) -> str:
# The target is already set by default
del result.__proxy_target__
assert result == '1bbbbbbbbbb2dddddddddd'
assert isinstance(result, Proxy)
assert not store.exists(get_key(result))


Expand Down