Open oliver-sanders opened 7 years ago
Note: https://github.com/cylc/cylc/blob/master/tests/param_expand/01-basic.t#L392 - inconsistence between graph and runtime handling of space and parameter expansion (e.g. in the graph, we remove all whitespace up front so subsequent regexes can ignore it; however, that might have been a bad call: https://github.com/cylc/cylc/issues/2534#issuecomment-356245200
Likely a desirable prerequisite to #1962
@matthewrmshin I don't think this is going to fit in with cylc-8, should this bump to cylc-9 and the config refactoring work required to the Python API?
@oliver-sanders - agreed, this is more Cylc-9-y (at least, not really needed for Cylc-8).
At present
cylc.config.SuiteConfig
performs multiple duties:cylc validate
e.g. cyclic dependency checkTaskDef
,TaskTrigger
, ...)These functionalities could do with being prised apart. Doing so should yield an efficiency bonus (e.g.
TaskDef
objects are currently constructed forcylc validate
,cylc graph
,cylc get-config
, ... calls despite not being needed).