1 Star 1 Fork 1

OzhizuO/Auto-GPT

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tests.py 437 Bytes
一键复制 编辑 原始数据 按行查看 历史
import unittest
import coverage
if __name__ == "__main__":
# Start coverage collection
cov = coverage.Coverage()
cov.start()
# Load all tests from the 'autogpt/tests' package
suite = unittest.defaultTestLoader.discover("./tests")
# Run the tests
unittest.TextTestRunner().run(suite)
# Stop coverage collection
cov.stop()
cov.save()
# Report the coverage
cov.report(show_missing=True)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/OcxnO/Auto-GPT.git
[email protected]:OcxnO/Auto-GPT.git
OcxnO
Auto-GPT
Auto-GPT
master

搜索帮助