烧瓶导致错误的tox渲染错误(Python)

时间:2017-06-23 21:21:54

标签: python unit-testing flask tox

我遇到了渲染模板的问题。基本上烧瓶可以很好地找到模板,但运行时不能使用tox:

TemplateNotFound: folder_a/file_a.html
我正在尝试对呈现模板的视图进行单元测试:

@flask_blueprint_name.route('/')
def hello():
  return render_template('folder_a/file_a.html')

文件目录如下: /folder_a/views.py&lt; - 这包含hello函数 /templates/folder_a/file_a.html< - 这包含模板

烧瓶安装可以找到模板并正确显示,但运行tox -r无法找到模板,我得到上述错误。请帮我用render_template ...

测试函数

0 个答案:

没有答案