diff options
author | anatoly techtonik <techtonik@gmail.com> | 2014-03-05 04:30:03 (GMT) |
---|---|---|
committer | anatoly techtonik <techtonik@gmail.com> | 2014-03-05 04:30:03 (GMT) |
commit | fa29d885681ed0ebdc3723525a18129fefcdc56a (patch) | |
tree | e296667bd093ffe0093a39c102fe0f4a55668d8f /testing | |
parent | 72b6c82bb4cb2efeb2dd51023c365e0f6a3037a4 (diff) | |
download | SCons-fa29d885681ed0ebdc3723525a18129fefcdc56a.zip SCons-fa29d885681ed0ebdc3723525a18129fefcdc56a.tar.gz SCons-fa29d885681ed0ebdc3723525a18129fefcdc56a.tar.bz2 |
buildbot: pip module is a better way to install buildbot-slave in virtualenv
Diffstat (limited to 'testing')
-rw-r--r-- | testing/buildbot.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/testing/buildbot.yml b/testing/buildbot.yml index c5bc3da..d68cc59 100644 --- a/testing/buildbot.yml +++ b/testing/buildbot.yml @@ -35,7 +35,6 @@ section=extensions option=hgext.purge value= - # --- setup virtualenv for buildbot --- - - name: setup buildbot-virtualenv - command: /usr/bin/virtualenv --no-site-packages {{ venv }} - creates={{ venv }}/bin + # --- install buildbot --- + - name: install buildbot-slave in virtualenv + pip: name=buildbot-slave virtualenv={{ venv }} |