aboutsummaryrefslogtreecommitdiff
path: root/tests/lib/test_yaml.py
blob: a5c10a389a83c0a391dcaf8622fb2b6e49b95feb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

from test_dump_load import *
from test_mark import *
from test_reader import *
from test_canonical import *
from test_tokens import *
from test_structure import *
from test_errors import *
from test_resolver import *
from test_constructor import *
from test_emitter import *
from test_representer import *
from test_recursive import *
from test_input_output import *
from test_sort_keys import *
from test_multi_constructor import *

from test_schema import *

if __name__ == '__main__':
    import test_appliance
    test_appliance.run(globals())