This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

28 строки
571 B

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