FitTrackee/mpwo_api/server.py

38 lines
824 B
Python
Raw Normal View History

2017-12-16 21:00:46 +01:00
import unittest
from mpwo_api import app, db
from mpwo_api.users.models import User
@app.cli.command()
def recreate_db():
"""Recreates a database."""
db.drop_all()
db.create_all()
db.session.commit()
print('Database (re)creation done.')
@app.cli.command()
def seed_db():
"""Seeds the database."""
2017-12-17 09:16:08 +01:00
admin = User(username='admin', email='admin@example.com', password='admin')
admin.admin = True
db.session.add(admin)
2017-12-16 21:00:46 +01:00
db.session.commit()
@app.cli.command()
def test():
"""Runs the tests without code coverage."""
tests = unittest.TestLoader().discover(
2018-01-01 11:10:39 +01:00
'mpwo_api/mpwo_api/tests', pattern='test*.py')
2017-12-16 21:00:46 +01:00
result = unittest.TextTestRunner(verbosity=2).run(tests)
if result.wasSuccessful():
return 0
return 1
if __name__ == '__main__':
app.run()