Skip to content

Instantly share code, notes, and snippets.

@marcuxyz
Created September 26, 2020 13:34
Show Gist options
  • Save marcuxyz/2cef0936a4a49a64a35b7213b1e5597d to your computer and use it in GitHub Desktop.
Save marcuxyz/2cef0936a4a49a64a35b7213b1e5597d to your computer and use it in GitHub Desktop.
fixture
@pytest.fixture
def create_database(app):
with app.app_context():
db.create_all()
yield db
db.session.remove()
db.drop_all()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment