-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfabfile.py
80 lines (58 loc) · 2.22 KB
/
fabfile.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
# coding=UTF-8
import sys
from fabric.context_managers import cd, shell_env, settings, prefix
from fabric.operations import local, run
TEST_SETTINGS = "FoodDay.Settings.test_settings"
LOCAL_SETTINGS = "FoodDay.Settings.local_settings"
def deploy_to_test(run_tests="yes", debug="no"):
print "Deploying to test"
print ""
with shell_env(DJANGO_SETTINGS_MODULE=LOCAL_SETTINGS):
if debug != "no":
_print_debug_info()
if run_tests == "yes":
_run_tests()
print "TODO: compare output from pip freeze with the current requirements.txt"
_push_to_test()
_restart_server()
def _push_to_test():
_add_test_as_remote()
print "Pushing HEAD to test servers master branch"
local('git config --local push.default current')
local('git push test +HEAD:master ')
def _add_test_as_remote():
local('git remote add test [email protected]:repo/foodaytest.git')
def _restart_server():
print ""
print "Restarting server"
code_dir = '/home/foodaytest/app/FooDay'
with settings(host_string='[email protected]'), cd(code_dir), shell_env(DJANGO_SETTINGS_MODULE=TEST_SETTINGS):
# run('git reset --hard')
run('git fetch')
run('git checkout origin/master')
with prefix('source env/bin/activate'):
run('which python')
run('pip install -r requirements.txt')
run('python manage.py syncdb')
run('python manage.py migrate')
run('python manage.py collectstatic')
print "Restarting server signal"
run('sudo /home/foodaytest/app/misc/restart-fooday-test')
def _virtualenv_has_been_activated():
return hasattr(sys, 'real_prefix')
def _validate():
if not _virtualenv_has_been_activated():
print "Please activate your virtualenv before running this script"
def _print_debug_info():
print "Debug info:"
_print_python_path()
print ""
def _print_python_path():
print "Python version:"
local('which python')
def _run_tests():
print "Runnning tests:"
local('python manage.py test')
print ""
print "TODO: run test coverage"