chore: enhance E2E tests workflow by adding caching for Next.js build and updating test command

This commit is contained in:
Anish Sarkar 2026-05-10 22:21:06 +05:30
parent 548e574f1a
commit 292b4d70ac
4 changed files with 21 additions and 7 deletions

View file

@ -67,7 +67,11 @@ def run_migrations_offline() -> None:
def do_run_migrations(connection: Connection) -> None:
context.configure(connection=connection, target_metadata=target_metadata)
context.configure(
connection=connection,
target_metadata=target_metadata,
transaction_per_migration=True,
)
with context.begin_transaction():
context.run_migrations()