-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
40 lines (28 loc) · 912 Bytes
/
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
import os
from flask.ext.script import Manager, Command, Option
from main import app
from settings import PROJECT_NAME
class Test(Command):
"""
Starts unit tests
"""
start_discovery_dir = "tests"
def get_options(self):
return [
Option(
'--start_discover', '-s', dest='start_discovery',
help='Pattern to search for features',
default=self.start_discovery_dir),
]
def run(self, start_discovery):
import unittest
if os.path.exists(start_discovery):
argv = [PROJECT_NAME, "discover"]
argv += ["-s", start_discovery]
unittest.main(argv=argv)
else:
print("Directory '%s' was not found in project root." % start_discovery)
if __name__ == "__main__":
manager = Manager(app)
manager.add_command("test", Test())
manager.run()