removed obsolete test-interactive command

This commit is contained in:
Emmanuel Viennet 2021-09-06 21:38:40 +02:00
parent 04d5dd2ad7
commit af77a2a389
1 changed files with 0 additions and 18 deletions

View File

@ -188,24 +188,6 @@ def create_dept(dept): # create-dept
return 0
@app.cli.command()
@click.argument("filename")
@with_appcontext
def test_interactive(filename=None):
"Run interactive test"
import flask_login
from app import decorators
click.echo("Executing {}".format(filename))
with app.test_request_context(""):
u = User.query.first()
flask_login.login_user(u)
REQUEST = decorators.ZRequest()
exec(open(filename).read())
click.echo("Done.")
@app.cli.command()
@with_appcontext
def import_scodoc7_users(): # import-scodoc7-users