build test files by default (#25515)

* build test files by default

* only on master based
This commit is contained in:
Adeeb Shihadeh
2022-08-25 16:22:52 -07:00
committed by GitHub
parent 3bb2b4df49
commit c2fee2d45e
2 changed files with 10 additions and 8 deletions
+6 -4
View File
@@ -10,10 +10,6 @@ AGNOS = TICI
Decider('MD5-timestamp')
AddOption('--test',
action='store_true',
help='build test files')
AddOption('--extras',
action='store_true',
help='build misc extras, like setup and installer files')
@@ -53,6 +49,12 @@ AddOption('--no-thneed',
dest='no_thneed',
help='avoid using thneed')
AddOption('--no-test',
action='store_false',
dest='test',
default=os.path.isfile(Dir('#laika_repo').abspath),
help='skip building test files')
real_arch = arch = subprocess.check_output(["uname", "-m"], encoding='utf8').rstrip()
if platform.system() == "Darwin":
arch = "Darwin"