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
|
2016-08-29 00:52:31 +02:00
|
|
|
import argparse
|
2016-08-04 00:35:53 +02:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
|
2021-07-03 08:22:44 +02:00
|
|
|
tools_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
root_dir = os.path.abspath(os.path.join(tools_dir, ".."))
|
|
|
|
tools_test_dir = os.path.join(tools_dir, "tests")
|
|
|
|
|
|
|
|
sys.path.insert(0, root_dir)
|
|
|
|
|
2017-02-05 21:24:28 +01:00
|
|
|
# check for the venv
|
2021-07-03 08:22:44 +02:00
|
|
|
from tools.lib import sanity_check
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2017-02-05 21:24:28 +01:00
|
|
|
sanity_check.check_venv(__file__)
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
if __name__ == "__main__":
|
2016-08-29 00:52:31 +02:00
|
|
|
parser = argparse.ArgumentParser()
|
2021-02-12 08:20:45 +01:00
|
|
|
parser.add_argument("--coverage", action="store_true", help="compute test coverage")
|
2016-08-29 00:52:31 +02:00
|
|
|
args = parser.parse_args()
|
2016-08-04 00:35:53 +02:00
|
|
|
|
2017-08-07 02:01:59 +02:00
|
|
|
loader = unittest.TestLoader()
|
2016-08-04 00:35:53 +02:00
|
|
|
|
2016-08-29 00:52:31 +02:00
|
|
|
if args.coverage:
|
2016-08-04 00:35:53 +02:00
|
|
|
import coverage
|
2021-02-12 08:19:30 +01:00
|
|
|
|
|
|
|
cov = coverage.Coverage(
|
2021-07-03 08:22:44 +02:00
|
|
|
branch=True, omit=["*/zulip-venv-cache/*", os.path.join(tools_test_dir, "*")]
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2016-08-04 00:35:53 +02:00
|
|
|
cov.start()
|
|
|
|
|
|
|
|
suite = loader.discover(start_dir=tools_test_dir, top_level_dir=root_dir)
|
|
|
|
runner = unittest.TextTestRunner(verbosity=2)
|
2017-08-25 20:01:20 +02:00
|
|
|
result = runner.run(suite)
|
2016-08-04 00:35:53 +02:00
|
|
|
if result.errors or result.failures:
|
2021-02-12 08:20:45 +01:00
|
|
|
raise Exception("Test failed!")
|
2016-08-04 00:35:53 +02:00
|
|
|
|
2016-08-29 00:52:31 +02:00
|
|
|
if args.coverage:
|
2016-08-04 00:35:53 +02:00
|
|
|
cov.stop()
|
|
|
|
cov.save()
|
2021-02-12 08:20:45 +01:00
|
|
|
cov.html_report(directory="var/tools_coverage")
|
2016-08-04 00:35:53 +02:00
|
|
|
print("HTML report saved to var/tools_coverage")
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
print("SUCCESS")
|