We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# rose-suite.conf [jinja2:suite.rc] FOO=1 BAR=1
# meta/rose_meta.conf [jinja2:suite.rc=FOO] fail-if=jinja2:suite.rc=FOO == 1 and jinja2:suite.rc=BAR == 1 [jinja2:suite.rc=BAR]
$ rose metadata-check -C meta/ $ rose macro -V [V] metomi.rose.macros.DefaultValidators: issues: 1 jinja2:suite.rc=FOO=1 failed because: jinja2:suite.rc=FOO == 1 and jinja2:suite.rc=BAR == 1
Now, take this same example and s/jinja2:suite.rc/template variables:
s/jinja2:suite.rc/template variables
$ rose metadata-check -C meta/ [V] rose.metadata_check.MetadataChecker: issues: 1 template variables=FOO=fail-if=template variables=FOO == 1 and template variables=BAR == 1 Not found: variables=BAR, variables=FOO
Rose doesn't like the space in template variables 😢
template variables
The text was updated successfully, but these errors were encountered:
The best thing I can think of is a nasty hack to internally replace template variables with template_variables.
template_variables
Sorry, something went wrong.
wxtim
Successfully merging a pull request may close this issue.
Now, take this same example and
s/jinja2:suite.rc/template variables
:Rose doesn't like the space in
template variables
😢The text was updated successfully, but these errors were encountered: