diff options
-rw-r--r-- | service/app/__init__.py | 3 | ||||
-rw-r--r-- | service/app/pixelated_user_agent.py | 5 | ||||
-rwxr-xr-x | service/go | 9 | ||||
-rwxr-xr-x | service/runtests | 2 | ||||
-rw-r--r-- | service/test/__init__.py | 3 | ||||
-rw-r--r-- | service/test/search/test_search_query.py | 1 |
6 files changed, 10 insertions, 13 deletions
diff --git a/service/app/__init__.py b/service/app/__init__.py index acb5b492..8b137891 100644 --- a/service/app/__init__.py +++ b/service/app/__init__.py @@ -1,4 +1 @@ -import sys -import os -sys.path.insert(0, os.environ['APP_ROOT']) diff --git a/service/app/pixelated_user_agent.py b/service/app/pixelated_user_agent.py index d13a7fdc..fb71a6f5 100644 --- a/service/app/pixelated_user_agent.py +++ b/service/app/pixelated_user_agent.py @@ -112,10 +112,13 @@ def draft_reply_for(mail_id): def index(): return app.send_static_file('index.html') -if __name__ == '__main__': +def setup(): app.config.from_envvar('PIXELATED_UA_CFG') account = app.config['ACCOUNT'] mail_service = MailService() converter = MailConverter(mail_service) app.run(host=app.config['HOST'], debug=app.config['DEBUG'], port=app.config['PORT']) + +if __name__ == '__main__': + setup() @@ -1,5 +1,6 @@ -#!/bin/bash +#!/usr/bin/env python +from app.pixelated_user_agent import setup +import os +os.environ['PIXELATED_UA_CFG']='../config/pixelated_ua.cfg' +setup() -export PIXELATED_UA_CFG=../config/pixelated_ua.cfg -export APP_ROOT=. -python app/pixelated_user_agent.py diff --git a/service/runtests b/service/runtests index 6b10459a..458e8926 100755 --- a/service/runtests +++ b/service/runtests @@ -1,2 +1,2 @@ #!/bin/bash -APP_ROOT=`pwd` py.test test/ +py.test test/ diff --git a/service/test/__init__.py b/service/test/__init__.py index acb5b492..8b137891 100644 --- a/service/test/__init__.py +++ b/service/test/__init__.py @@ -1,4 +1 @@ -import sys -import os -sys.path.insert(0, os.environ['APP_ROOT']) diff --git a/service/test/search/test_search_query.py b/service/test/search/test_search_query.py index 85d9681d..a5f3be99 100644 --- a/service/test/search/test_search_query.py +++ b/service/test/search/test_search_query.py @@ -1,5 +1,4 @@ import sys, os -sys.path.insert(0, os.environ['APP_ROOT']) from app.search import SearchQuery |