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
6 changes: 2 additions & 4 deletions tests/test_pyright.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ def test_pyright_baseline():
(
"error",
'Cannot assign to attribute "a" for class '
'"Frozen"\n\xa0\xa0"Frozen" is frozen\n\xa0\xa0\xa0\xa0'
'Attribute "__set__" is unknown',
'"Frozen"\n\xa0\xa0Attribute "a" is read-only',
),
(
"information",
Expand All @@ -66,8 +65,7 @@ def test_pyright_baseline():
(
"error",
'Cannot assign to attribute "a" for class '
'"FrozenDefine"\n\xa0\xa0"FrozenDefine" is frozen\n\xa0\xa0\xa0\xa0'
'Attribute "__set__" is unknown',
'"FrozenDefine"\n\xa0\xa0Attribute "a" is read-only',
),
(
"information",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ commands =

[testenv:pyright]
extras = tests
deps = pyright<1.1.380
deps = pyright>=1.1.380
commands = pytest tests/test_pyright.py -vv


Expand Down
Loading