python – sniffer找不到DJANGO_SETTINGS_MODULE

我正在尝试在开发过程中进行更改后自动执行测试重新运行.搜索一下后,sniffer似乎很好.但是,如果我运行它,我的测试失败并出现此错误:

ERROR: Failure: ImportError (Settings cannot be imported, because environment variable DJANGO_SETTINGS_MODULE is undefined.)

如果我手动运行它们就会通过.你有一个线索,为什么嗅探器不起作用?

解决方法:

你的scent.py应该可以使用以下内容:

from subprocess import call
from sniffer.api import runnable

@runnable
def execute_tests(*args):
    fn = [ 'python', 'manage.py', 'test' ]
    fn += args[1:]
    return call(fn) == 0

然后您可以将其称为sniffer -x appName.

上一篇:如何在python中嗅探HTTP数据包?


下一篇:ElasticSearch-Java-low-level-rest-client官方文档翻译