Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If the suite definition is built using python apiAPI.

Code Block
languagepy
titleCheck definition built using ecflow Python API
import ecflow     
defs = ecflow.Defs()
suite = defs.add_suite("s1");
suite.add_task("t1").add_trigger("t2 == active)")  # missing bracket

theCheckValue = defs.check();
print("Message: ",theCheckValue)
assert len(theCheckValue) != 0,  "Expected Error: mis-matched brackets in expression."

...