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