未验证 提交 8507757c 编写于 作者: M Mark VanderVoord 提交者: GitHub

Merge pull request #401 from ty93/master

unity_test_summary.py recursive search for test files
...@@ -121,7 +121,7 @@ if __name__ == '__main__': ...@@ -121,7 +121,7 @@ if __name__ == '__main__':
targets_dir = sys.argv[1] targets_dir = sys.argv[1]
else: else:
targets_dir = './' targets_dir = './'
targets = list(map(lambda x: x.replace('\\', '/'), glob(targets_dir + '*.test*'))) targets = list(map(lambda x: x.replace('\\', '/'), glob(targets_dir + '**/*.test*', recursive=True)))
if len(targets) == 0: if len(targets) == 0:
raise Exception("No *.testpass or *.testfail files found in '%s'" % targets_dir) raise Exception("No *.testpass or *.testfail files found in '%s'" % targets_dir)
uts.set_targets(targets) uts.set_targets(targets)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册