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 69f75bd commit 1a17e10Copy full SHA for 1a17e10
tests/abinit/conftest.py
@@ -189,6 +189,10 @@ def check_equivalent_znucl_typat(
189
{count_sorted_znucl_a} vs. {count_sorted_znucl_b}"
190
)
191
192
+ for fp_key in ("tsmear",):
193
+ if (ref_val := ref.datasets[0].get(fp_key)) is not None:
194
+ assert user.datasets[0].get(fp_key) == pytest.approx(ref_val)
195
+
196
197
def check_abinit_input_json(ref_path: str | Path):
198
from abipy.abio.inputs import AbinitInput
0 commit comments