Created
September 26, 2020 13:34
-
-
Save marcuxyz/2cef0936a4a49a64a35b7213b1e5597d to your computer and use it in GitHub Desktop.
fixture
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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