1234567891011121314151617181920 |
- from os import path
- import os
- here_dir = path.dirname(path.abspath(__file__))
- def run_all_test():
- """顺序运行所有测试用例"""
- files = [f for f in os.listdir(here_dir) if path.isfile(f) and f.split('.', 1)[0].isdigit()]
- files.sort(key=lambda f: int(f.split('.', 1)[0]))
- for f in files:
- file = path.join(here_dir, f)
- print("Run test script: %s" % file)
- os.system("npx percy exec -- python3 %s auto" % file)
- if __name__ == '__main__':
- run_all_test()
|