Skip to content
Snippets Groups Projects
Commit 482f6579 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

tests/integration: accept only test files

parent 84cd855b
No related branches found
No related tags found
No related merge requests found
......@@ -239,7 +239,7 @@ class Step:
class Scenario:
def __init__(self, info):
""" Initialize scenario with description. """
print '# %s' % info
self.info = info
self.ranges = []
self.steps = []
self.current_step = None
......
......@@ -106,7 +106,8 @@ def find_objects(path):
for e in os.listdir(path):
result += find_objects(os.path.join(path, e))
elif os.path.isfile(path):
result.append(path)
if path.endswith('.rpl'):
result.append(path)
return result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment