-
Notifications
You must be signed in to change notification settings - Fork 3
/
manage.py
81 lines (58 loc) · 1.39 KB
/
manage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# manage.py
import unittest
import os
import coverage
from flask.cli import FlaskGroup
from project.server import create_app, db
from project.server.user.models import User
import subprocess
import sys
app = create_app()
cli = FlaskGroup(create_app=create_app)
# code coverage
COV = coverage.coverage(
branch=True,
include="project/*",
omit=[
"project/tests/*",
"project/server/config.py",
"project/server/*/__init__.py",
],
)
COV.start()
@cli.command()
def create_db():
db.drop_all()
db.create_all()
db.session.commit()
@cli.command()
def drop_db():
"""Drops the db tables."""
db.drop_all()
@cli.command()
def create_admin():
"""Creates the admin user."""
db.session.add(User(username='happyad123', email="[email protected]", password="happyad321", admin=True))
db.session.commit()
@cli.command()
def create_data():
"""Creates sample data."""
pass
@cli.command()
def test():
"""Runs the pytest without test coverage."""
import pytest
rv = pytest.main(["project/tests_pytest", "--verbose"])
exit(rv)
@cli.command()
def cov():
"""Runs the unit tests with coverage."""
import pytest
rv = pytest.main(["project/tests_pytest", "--cov"])
exit(rv)
@cli.command()
def flake():
"""Runs flake8 on the project."""
subprocess.run(["flake8", "project"])
if __name__ == "__main__":
cli()