We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cb2302 commit 93dcd98Copy full SHA for 93dcd98
tests/metadata/__init__.py
@@ -25,6 +25,7 @@
25
import attr
26
from attr import NOTHING, Factory
27
from attr._make import _CountingAttr
28
+from hypothesis import note
29
from hypothesis.strategies import (
30
DrawFn,
31
SearchStrategy,
@@ -164,10 +165,11 @@ def key(t):
164
165
for i, a in enumerate(attrs):
166
a.counter = i
167
vals = tuple((a[1]) for a in attrs_and_strat)
168
+ note(f"Class fields: {attrs}")
169
return tuples(
170
just(
171
make_class(
- "HypClass",
172
+ "HypAttrsClass",
173
OrderedDict(zip(gen_attr_names(), attrs)),
174
frozen=frozen,
175
)
0 commit comments