RuntimeError: working outside of application context

后端 未结 2 2051
情歌与酒
情歌与酒 2020-12-01 10:03

app.py

from flask import Flask, render_template, request,jsonify,json,g
import mysql.connector

app = Flask(__name__)
**class TestMySQL():**         


        
2条回答
  •  攒了一身酷
    2020-12-01 10:36

    I followed @brenns10 's answer when I ran into a similar problem when using pytest.

    I followed the suggestion of putting it into test setup, this works:

    import pytest
    from src.app import app
    
    
    @pytest.fixture
    def app_context():
        with app.app_context():
            yield
    
    
    def some_test(app_context):
        
    

提交回复
热议问题