diff --git a/app/test/fixtures.py b/app/test/fixtures.py index d83bee5..195c318 100644 --- a/app/test/fixtures.py +++ b/app/test/fixtures.py @@ -18,6 +18,7 @@ def db(app): from app import db with app.app_context(): + db.drop_all() db.create_all() yield db db.drop_all()