1 Star 0 Fork 1

unlp/ChatterBot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
runtests.py 498 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
"""
This is the test runner for the ChatterBot's Django tests.
"""
import os
import sys
import django
from django.conf import settings
from django.test.utils import get_runner
if __name__ == '__main__':
os.environ['DJANGO_SETTINGS_MODULE'] = 'tests_django.test_settings'
django.setup()
TestRunner = get_runner(settings)
test_runner = TestRunner(
verbosity=2
)
failures = test_runner.run_tests(['tests_django'])
sys.exit(bool(failures))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/unlp/ChatterBot.git
[email protected]:unlp/ChatterBot.git
unlp
ChatterBot
ChatterBot
master

搜索帮助