Skip to content
Snippets Groups Projects
Commit a3bf4c68 authored by Thomas Kluyver's avatar Thomas Kluyver
Browse files

Clean up some more uses of # noqa

parent 0794a417
No related branches found
No related tags found
1 merge request!933[Tests] clearer comparison of HDF5 files
...@@ -85,9 +85,13 @@ def validate_file( ...@@ -85,9 +85,13 @@ def validate_file(
ref_ds = fref[dsname] ref_ds = fref[dsname]
out_ds = fout[dsname] out_ds = fout[dsname]
if out_ds.shape != ref_ds.shape: if out_ds.shape != ref_ds.shape:
changed.append((dsname, f"Shape: {ref_ds.shape} -> {out_ds.shape}")) # noqa changed.append((
dsname, f"Shape: {ref_ds.shape} -> {out_ds.shape}"
))
elif out_ds.dtype != ref_ds.dtype: elif out_ds.dtype != ref_ds.dtype:
changed.append((dsname, f"Dtype: {ref_ds.dtype} -> {out_ds.dtype}")) # noqa changed.append((
dsname, f"Dtype: {ref_ds.dtype} -> {out_ds.dtype}"
))
else: else:
floaty = np.issubdtype(ref_ds.dtype, np.floating) \ floaty = np.issubdtype(ref_ds.dtype, np.floating) \
or np.issubdtype(ref_ds.dtype, np.complexfloating) or np.issubdtype(ref_ds.dtype, np.complexfloating)
...@@ -312,7 +316,7 @@ def test_xfel_calibrate( ...@@ -312,7 +316,7 @@ def test_xfel_calibrate(
) )
) )
report_name = out_folder / f"{test_key}_{datetime.now().strftime('%y%m%d_%H%M%S')}" # noqa report_name = out_folder / f"{test_key}_{datetime.now():%y%m%d_%H%M%S}"
cal_conf["report-to"] = str(report_name) cal_conf["report-to"] = str(report_name)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment