我遇到了渲染模板的问题。基本上烧瓶可以很好地找到模板,但运行时不能使用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 ...
测试函数