6 lines
139 B
Python
6 lines
139 B
Python
import asyncio
|
|
from tests.run_tests import run_all_tests
|
|
|
|
# 测试生成程序
|
|
if __name__ == "__main__":
|
|
asyncio.run(run_all_tests()) |