This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

34 行
686 B

  1. from __future__ import absolute_import, print_function
  2. import unittest
  3. import logging
  4. from .test_trees import TestTrees
  5. try:
  6. from .test_nearley.test_nearley import TestNearley
  7. except ImportError:
  8. pass
  9. # from .test_selectors import TestSelectors
  10. # from .test_grammars import TestPythonG, TestConfigG
  11. from .test_parser import (
  12. TestLalrStandard,
  13. TestEarleyStandard,
  14. TestCykStandard,
  15. TestLalrContextual,
  16. TestEarleyScanless,
  17. TestEarleyDynamic,
  18. TestFullEarleyScanless,
  19. TestFullEarleyDynamic,
  20. TestParsers,
  21. )
  22. logging.basicConfig(level=logging.INFO)
  23. if __name__ == '__main__':
  24. unittest.main()