Closed bennybp closed 4 years ago
Also,
ds.status(detail=True)
returns error if no INCOMPLETE
jobs exist.
Those work without error:
ds.status()
ds.status(collapse=False)
ds.status(status='complete')
Finally, this sequence works:
import qcportal as ptl
client = ptl.FractalClient()
ds = client.get_collection("OptimizationDataset", "SMIRNOFF Coverage Set 1")
ds.status()
ds.status(["default"])
That is, calling ds.status()
before calling it with specs will work.
Fixed in PR #588
Describe the bug When calling
status()
on datasets, an exception is raised. This occurs when following the documentation examples (https://qcarchive.molssi.org/examples)To Reproduce
Follow the documentation
The exception is
Expected behavior
According to the documentation, an overview of the status of the computations
Additional context
Installed via conda