summaryrefslogtreecommitdiff
path: root/tests/test_yaml.py
blob: fd7b5acbdc233ae7d8b733d27c5b829963861c09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

import unittest

from test_marker import *
from test_reader import *
from test_canonical import *
from test_tokens import *
from test_structure import *
from test_errors import *

def main(module='__main__'):
    unittest.main(module)

if __name__ == '__main__':
    main()