Merge pull request #490 from mozilla/issue_488

Allow -t flag to specify text file with test names
This commit is contained in:
mwobensmith 2019-07-18 11:32:07 -07:00 коммит произвёл GitHub
Родитель 6e3af3ec8c 23aaca5b0b
Коммит 9494ec2122
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 18 добавлений и 13 удалений

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

@ -36,7 +36,12 @@ def collect_tests():
if load_target(target):
include = core_args.test
exclude = core_args.exclude
if os.path.isfile(core_args.test):
with open(core_args.test, 'r') as f:
for line in f:
test_list.append(line.rstrip('\n'))
f.close()
else:
tests_dir = os.path.join(PathManager.get_tests_dir(), target)
logger.debug('Path %s found. Checking content ...', tests_dir)
for dir_path, sub_dirs, all_files in PathManager.sorted_walk(tests_dir):