Skip to content

Commit 5ef96fd

Browse files
asottilepytestbot
authored andcommitted
[7.1.x] fix comparison of dataclasses with InitVar
1 parent 7a501fb commit 5ef96fd

File tree

4 files changed

+24
-2
lines changed

4 files changed

+24
-2
lines changed

changelog/9820.bugfix.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix comparison of ``dataclasses`` with ``InitVar``.

src/_pytest/assertion/util.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -437,8 +437,10 @@ def _compare_eq_cls(left: Any, right: Any, verbose: int) -> List[str]:
437437
if not has_default_eq(left):
438438
return []
439439
if isdatacls(left):
440-
all_fields = left.__dataclass_fields__
441-
fields_to_check = [field for field, info in all_fields.items() if info.compare]
440+
import dataclasses
441+
442+
all_fields = dataclasses.fields(left)
443+
fields_to_check = [info.name for info in all_fields if info.compare]
442444
elif isattrs(left):
443445
all_fields = left.__attrs_attrs__
444446
fields_to_check = [field.name for field in all_fields if getattr(field, "eq")]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from dataclasses import dataclass
2+
from dataclasses import InitVar
3+
4+
5+
@dataclass
6+
class Foo:
7+
init_only: InitVar[int]
8+
real_attr: int
9+
10+
11+
def test_demonstrate():
12+
assert Foo(1, 2) == Foo(1, 3)

testing/test_assertion.py

+7
Original file line numberDiff line numberDiff line change
@@ -882,6 +882,13 @@ def test_data_classes_with_custom_eq(self, pytester: Pytester) -> None:
882882
result.assert_outcomes(failed=1, passed=0)
883883
result.stdout.no_re_match_line(".*Differing attributes.*")
884884

885+
def test_data_classes_with_initvar(self, pytester: Pytester) -> None:
886+
p = pytester.copy_example("dataclasses/test_compare_initvar.py")
887+
# issue 9820
888+
result = pytester.runpytest(p, "-vv")
889+
result.assert_outcomes(failed=1, passed=0)
890+
result.stdout.no_re_match_line(".*AttributeError.*")
891+
885892

886893
class TestAssert_reprcompare_attrsclass:
887894
def test_attrs(self) -> None:

0 commit comments

Comments
 (0)