Imported Upstream version 3.10
[platform/upstream/python-PyYAML.git] / tests / lib3 / test_all.py
1
2 import sys, yaml, test_appliance
3
4 def main(args=None):
5     collections = []
6     import test_yaml
7     collections.append(test_yaml)
8     if yaml.__with_libyaml__:
9         import test_yaml_ext
10         collections.append(test_yaml_ext)
11     test_appliance.run(collections, args)
12
13 if __name__ == '__main__':
14     main()
15