mirror of
https://gitee.com/openharmony/third_party_pyyaml
synced 2024-11-30 13:51:57 +00:00
23 lines
444 B
Python
23 lines
444 B
Python
|
|
import unittest
|
|
|
|
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_syck import *
|
|
|
|
def main(module='__main__'):
|
|
unittest.main(module)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|