Bug 1614771 - Run `./mach addtest` with Python 3 r=ahal

Differential Revision: https://phabricator.services.mozilla.com/D62541

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Hamzah 2020-02-13 16:56:44 +00:00
Родитель d701c66a79
Коммит becd55c159
2 изменённых файлов: 1 добавлений и 2 удалений

1
mach
Просмотреть файл

@ -11,7 +11,6 @@
# shell because `''':'`, `':'` and `:` are all equivalent, and `:` is a no-op.
''':'
py2commands="
addtest
analyze
android
android-emulator

Просмотреть файл

@ -102,7 +102,7 @@ def create_parser_addtest():
import addtest
parser = argparse.ArgumentParser()
parser.add_argument('--suite',
choices=sorted(ADD_TEST_SUPPORTED_SUITES + SUITE_SYNONYMS.keys()),
choices=sorted(ADD_TEST_SUPPORTED_SUITES + list(SUITE_SYNONYMS.keys())),
help='suite for the test. '
'If you pass a `test` argument this will be determined '
'based on the filename and the folder it is in')