1 2from test_dump_load import * 3from test_mark import * 4from test_reader import * 5from test_canonical import * 6from test_tokens import * 7from test_structure import * 8from test_errors import * 9from test_resolver import * 10from test_constructor import * 11from test_emitter import * 12from test_representer import * 13from test_recursive import * 14from test_input_output import * 15from test_sort_keys import * 16from test_multi_constructor import * 17 18from test_schema import * 19 20if __name__ == '__main__': 21 import test_appliance 22 test_appliance.run(globals()) 23 24