mirror of https://github.com/lark-parser/lark.git
15 lines
395 B
Python
15 lines
395 B
Python
from __future__ import absolute_import, print_function
|
|
|
|
import unittest
|
|
import logging
|
|
|
|
from .test_trees import TestTrees
|
|
# from .test_selectors import TestSelectors
|
|
from .test_parser import TestLalr, TestEarley, TestLalr_contextual_lexer, TestParsers
|
|
# from .test_grammars import TestPythonG, TestConfigG
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|