Last active
March 25, 2018 12:43
-
-
Save twneale/6855493 to your computer and use it in GitHub Desktop.
fab context manager to activate virtualenv before running command
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'''See http://stackoverflow.com/a/5359988/120991 | |
''' | |
from fabric.api import * | |
from contextlib import contextmanager | |
env.update( | |
use_ssh_config=True, | |
directory='/home/ubuntu/projects/thingy', | |
activate='source /home/ubuntu/.virtualenvs/thingy/bin/activate', | |
) | |
@contextmanager | |
def virtualenv(): | |
'''Context manager to activate virtualenv. | |
''' | |
with cd(env.directory): | |
with prefix(env.activate): | |
yield | |
def supervisor(command, process): | |
with virtualenv(): | |
run('supervisor restart something') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks for this script