mirror of
https://github.com/lucaspalomodevelop/eventcally.git
synced 2026-03-13 00:07:22 +00:00
Remove warnings #441
This commit is contained in:
parent
84882971b6
commit
44b2fa669d
@ -35,6 +35,7 @@ describe("Widget", () => {
|
||||
cy.createAdminUnit().then(function (adminUnitId) {
|
||||
// Start
|
||||
cy.visit("/meinecrew/widget/event_suggestions/create");
|
||||
cy.wait(1000); // Wait for jQuery to load
|
||||
cy.get(".wizard-next:visible").click();
|
||||
|
||||
// Tos
|
||||
|
||||
@ -95,8 +95,11 @@ def reset(seed):
|
||||
|
||||
@test_cli.command("drop-all")
|
||||
def drop_all():
|
||||
with db.engine.connect() as conn:
|
||||
with conn.begin():
|
||||
db.drop_all()
|
||||
db.engine.execute("DROP TABLE IF EXISTS alembic_version;")
|
||||
conn.execute(text("DROP TABLE IF EXISTS alembic_version;"))
|
||||
|
||||
click.echo("Drop all done.")
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user