You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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":
The text was updated successfully, but these errors were encountered:
To quote from the robotframework user guide:
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":
The text was updated successfully, but these errors were encountered: