cylc-flow
cylc-flow copied to clipboard
functional tests broken by any Jinja2 in global-tests.cylc
create_test_global_config
shell function needs tweaking
Replicated. 😢
Is this about trying to do something like this?
create_test_global_config "" "
#!Jinja2
[scheduler]
process pool timeout = {{ X }}
"
If so I think the simple solution is?
create_test_global_config "#!Jinja2" "
[scheduler]
process pool timeout = {{ X }}
"
The two args to create_test_global_config
are pre- and ap-pended to the global config respectively
No, the problem is use of Jinja2 in global-tests.cylc
. But, now that you've reminded me, I'll push up a fix.
Closed by #5148?