加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
runtests.py 928 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import os
import sys
import warnings
import django
from django.core.management import execute_from_command_line
parent = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, parent)
DEFAULT_TEST_APPS = [
'sortedm2m_tests',
]
def runtests(*args):
warnings.filterwarnings("ignore", module="distutils")
# Ignore a python 3.6 DeprecationWarning in ModelBase.__new__ that isn't
# fixed in Django 1.x
if sys.version_info > (3, 6) and django.VERSION < (2,):
warnings.filterwarnings(
"ignore", "__class__ not set defining", DeprecationWarning)
test_apps = list(args or DEFAULT_TEST_APPS)
print([sys.argv[0], 'test', '--verbosity=1'] + test_apps)
execute_from_command_line([sys.argv[0], 'test', '--verbosity=1'] + test_apps)
if __name__ == '__main__':
runtests(*sys.argv[1:])
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化