-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathd0cker
executable file
·33 lines (23 loc) · 1004 Bytes
/
d0cker
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
#!/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/.
# This script is used to manage Docker containers in the context of running
# Mercurial tests.
import os
import sys
HERE = os.path.dirname(os.path.abspath(__file__))
def main(args):
from mach.main import Mach
m = Mach(os.getcwd())
m.define_category("docker", "Docker", "Common actions involving Docker")
import vcttesting.docker_mach_commands
return m.run(args)
if __name__ == "__main__":
if "VIRTUAL_ENV" not in os.environ:
activate = os.path.join(HERE, "venv", "bin", "activate_this.py")
with open(activate) as f:
exec(f.read(), dict(__file__=activate))
sys.executable = os.path.join(HERE, "venv", "bin", "python")
os.environ["VIRTUAL_ENV"] = os.path.join(HERE, "venv")
sys.exit(main(sys.argv[1:]))