加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tests.py 438 Bytes
一键复制 编辑 原始数据 按行查看 历史
Merwane Hamadi 提交于 2023-04-17 13:41 . isort implemented
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 助手
尝试更多
代码解读
代码找茬
代码优化