Exemple #1
0
def _virtualenv_post():
    """Further procedures to run after the virtualenv is set up.
    """
    util.shv('pip install -r REQUIREMENTS')
    util.shv('python setup.py develop')
Exemple #2
0
def run(args):
    for fn in __path__.listdir('e*.py'):
        for arg in args:
            if fn.namebase.endswith(arg):
                print '\n\n---------------->'
                shv('time python %s' % fn)
Exemple #3
0
def env():
    """Set up the virtual environment.
    """
    util.shv('python setup.py develop')
Exemple #4
0
def test():
    shv('nosetests --all-modules')