testing: prevent double virtualenv activation
The bootstrap code was potentially activating a virtualenv on top of
itself. This results in the virtualenv's bin directory always being
first in PATH. This threw off hg binary detection when running under
--with-hg. Prevent double virtualenv activation.
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
import os
import sys
HERE = os.path.abspath(os.path.dirname(__file__))
def main(args):
if 'VIRTUAL_ENV' not in os.environ:
activate = os.path.join(HERE, 'venv', 'bin', 'activate_this.py')
execfile(activate, dict(__file__=activate))
sys.executable = os.path.join(HERE, 'venv', 'bin', 'python')
sys.path.insert(0, os.path.join(HERE, 'testing'))
from mach.main import Mach
m = Mach(os.getcwd())
m.define_category('pulse', 'Pulse',
'Control and Interact with the Pulse Message Broker', 50)
import vcttesting.pulse_mach_commands
return m.run(args)
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))