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
Currently this won't pay attention to the [Template] setting on the test itself, only to the 'Test Template' setting on the parent file. (Also doesn't account for colon in the parent suite's setting name)
should probably be updated to something like:
@propertydefis_templated(self):
"""Return True if the test is part of a suite that uses a Test Template"""forsettinginself.settings:
ifsetting[1].lower() =='[template]':
returnTruefortableinself.parent.tables:
ifisinstance(table, SettingTable):
forrowintable.rows:
ifrow[0].lower().rstrip(':') =="test template":
returnTruereturnFalse
The text was updated successfully, but these errors were encountered:
Currently this won't pay attention to the [Template] setting on the test itself, only to the 'Test Template' setting on the parent file. (Also doesn't account for colon in the parent suite's setting name)
should probably be updated to something like:
The text was updated successfully, but these errors were encountered: