Page History
...
This python segment show how to load a text based suite definition(cron.def) and simulate it in python.
Code Block | ||||
---|---|---|---|---|
| ||||
import ecflow defs = Defs("cron,def") result = defs.simulate() assert len(result) == 0, "Expected simulation to return without any errors, but found:\n" + result |
...
This simulation is expected to fail, since we have a deadlock/ race condition
|
|