-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanager.py
38 lines (26 loc) · 840 Bytes
/
manager.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
import os
from flask_script import Manager, Shell, Server
from flask_script.commands import ShowUrls
from MarathonMR.app import create_app
from MarathonMR.config import ProdConfig, DevConfig
if os.environ.get("ENV") == 'prod':
app = create_app(ProdConfig)
else:
app = create_app(DevConfig)
HERE = os.path.abspath(os.path.dirname(__file__))
TEST_PATH = os.path.join(HERE, 'tests')
manager = Manager(app)
def _make_context():
return {'app': app}
@manager.command
def test():
import pytest
exit_code = pytest.main([TEST_PATH, '--verbose'])
return exit_code
manager.add_command('server', Server(port=1234))
manager.add_command('shell', Shell(make_context=_make_context))
manager.add_command('urls', ShowUrls())
if __name__ == '__main__':
manager.run()
# To run coverage
# py.test --cov=MarathonMR tests/