Skip to content
New issue

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

RequireSuiteDocumentation does not allow for colon in setting name #39

Open
ntdaley opened this issue May 9, 2017 · 0 comments
Open

Comments

@ntdaley
Copy link

ntdaley commented May 9, 2017

To quote from the robotframework user guide:

All setting names can optionally include a colon at the end, for example Documentation:. This can make reading the settings easier especially when using the plain text format. This is a new feature in Robot Framework 2.5.5.

But, RequireSuiteDocumentation will not recognise the documentation setting with a colon after the name.

Could perhaps change
if row[0].lower() == "documentation":
to
if row[0].lower().rstrip(':') == "documentation":

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant