summaryrefslogtreecommitdiffstats
path: root/intl/icu/source/python/icutools/databuilder/test/__main__.py
blob: 6ae2c0f7c96e9c78941c5c8d8eec277d7ab0e342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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()