uitest - add folder uitest/manual_tests to script
script for page https://wiki.documentfoundation.org/ListUiTests Change-Id: I0081a4e1229105ef7387e70d76a5670a4f5de691 Reviewed-on: https://gerrit.libreoffice.org/47340 Reviewed-by: Xisco Faulí <xiscofauli@libreoffice.org> Tested-by: Xisco Faulí <xiscofauli@libreoffice.org>
This commit is contained in:
parent
16ea77bc4d
commit
ad32bcdfa1
1 changed files with 3 additions and 2 deletions
|
@ -12,7 +12,7 @@ import datetime
|
|||
def analyze_file(filename):
|
||||
class_name = ""
|
||||
method_list = []
|
||||
with open(filename) as fh:
|
||||
with open(filename, encoding='utf-8') as fh:
|
||||
for line in fh:
|
||||
if line.lstrip().startswith('class '):
|
||||
class_name = line.lstrip().split(" ")[1].split("(")[0]
|
||||
|
@ -51,7 +51,8 @@ def main():
|
|||
'Calc' : ['../uitest/calc_tests', '../sc/qa/uitest/'],
|
||||
'Impress' : ['../uitest/impress_tests/'],
|
||||
'Math': ['../uitest/math_tests/'],
|
||||
'Draw': ['']}
|
||||
'Draw': [''],
|
||||
'Manual_tests': ['../uitest/manual_tests/']}
|
||||
|
||||
print('{{TopMenu}}')
|
||||
print('{{Menu}}')
|
||||
|
|
Loading…
Reference in a new issue