We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b27e13 commit ef3e35dCopy full SHA for ef3e35d
tests/Stoner/test_Core.py
@@ -97,6 +97,9 @@ def test_constructor():
97
d = selfd.clone
98
df = d.to_pandas()
99
e = Data(df)
100
+ for bad_key in ["Loaded as","TDI Format"]: # These are non-vital keys that don't survice transfer
101
+ d.pop(bad_key,None)
102
+ e.pop(bad_key,None)
103
assert d == e, "Roundtripping through Pandas DataFrame failed."
104
105
e = Data(d.dict_records)
@@ -288,6 +291,8 @@ def test_dir():
288
291
"__getstate__",
289
292
"__static_attributes__",
290
293
"__firstlineno__",
294
+ '__annotate_func__',
295
+ '__annotations_cache__',
296
]
297
)
298
attrs = set(dir(selfd)) - bad_keys
0 commit comments