You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for step in ["XYCORR", "INIT", "COLSPOT", "IDXREF"]:
> lastrecord = open("%s.LP" % step).readlines()[-1]
E FileNotFoundError: [Errno 2] No such file or directory: 'XYCORR.LP'
fast_dp/autoindex.py:106: FileNotFoundError
This now uses subprocess.run, which takes some of the
complexity away of properly running subprocesses. Also,
raise an exception if this fails or if the executable
can not be found.
Fixes#55.
Running tests without XDS present give:
This is because
run_job
doesn't check and provides no way to tell if the process actually ran, so autoindex just carries on as if it's worked:fast_dp/fast_dp/autoindex.py
Line 98 in 4ea4775
The text was updated successfully, but these errors were encountered: