py3: Switch almost all shebang lines to use `python3`.
This causes `upgrade-zulip-from-git`, as well as a no-option run of
`tools/build-release-tarball`, to produce a Zulip install running
Python 3, rather than Python 2. In particular this means that the
virtualenv we create, in which all application code runs, is Python 3.
One shebang line, on `zulip-ec2-configure-interfaces`, explicitly
keeps Python 2, and at least one external ops script, `wal-e`, also
still runs on Python 2. See discussion on the respective previous
commits that made those explicit. There may also be some other
third-party scripts we use, outside of this source tree and running
outside our virtualenv, that still run on Python 2.
2017-08-02 23:15:16 +02:00
|
|
|
#!/usr/bin/env python3
|
2017-01-01 13:37:38 +01:00
|
|
|
|
|
|
|
import os
|
2017-09-30 08:42:22 +02:00
|
|
|
import argparse
|
2017-01-01 13:37:38 +01:00
|
|
|
import sys
|
|
|
|
|
|
|
|
tools_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
root_dir = os.path.dirname(tools_dir)
|
|
|
|
sys.path.insert(0, root_dir)
|
|
|
|
|
|
|
|
from tools.lib.test_script import (
|
2019-06-20 18:27:09 +02:00
|
|
|
assert_provisioning_status_ok,
|
2017-01-24 06:02:39 +01:00
|
|
|
)
|
2017-01-01 13:37:38 +01:00
|
|
|
|
|
|
|
def run():
|
|
|
|
# type: () -> None
|
2017-09-30 08:42:22 +02:00
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('--force', default=False,
|
|
|
|
action="store_true",
|
|
|
|
help='Run tests despite possible problems.')
|
|
|
|
options = parser.parse_args()
|
2017-01-01 13:37:38 +01:00
|
|
|
|
2019-06-20 18:27:09 +02:00
|
|
|
assert_provisioning_status_ok(options.force)
|
2017-01-01 13:37:38 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
run()
|