/
githubmirror
/
icu
Обзор
Документация
Войти
/
githubmirror
/
icu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
icu4c/source/python/icutools/databuilder/test/__main__.py
14 строк
350 B
Shane Carr
ICU-20593 Renaming Python buildtool to icutools.databuilder.
07 май 2019, 23:42
07 май 2019, 23:42
702fdb6
Код
Авторство
О чём код?
# Copyright (C) 2018 and later: Unicode, Inc. and others. # License & terms of use: http://www.unicode.org/copyright.html import unittest from . import filtration_test def load_tests(loader, tests, pattern): suite = unittest.TestSuite() suite.addTest(filtration_test.suite) return suite if __name__ == '__main__': unittest.main()