mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
22 lines
556 B
Python
22 lines
556 B
Python
from app import create_app, db
|
|
from app.models import Corpus, User, Role, Permission, Job
|
|
from flask_migrate import Migrate
|
|
import os
|
|
|
|
|
|
app = create_app(os.getenv('FLASK_CONFIG') or 'default')
|
|
migrate = Migrate(app, db)
|
|
|
|
|
|
@app.shell_context_processor
|
|
def make_shell_context():
|
|
return dict(db=db, Corpus=Corpus, User=User, Role=Role, Permission=Permission, Job=Job)
|
|
|
|
|
|
@app.cli.command()
|
|
def test():
|
|
"""Run the unit tests."""
|
|
import unittest
|
|
tests = unittest.TestLoader().discover('tests')
|
|
unittest.TextTestRunner(verbosity=2).run(tests)
|