This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

38 linhas
930 B

  1. from __future__ import absolute_import, print_function
  2. import unittest
  3. import logging
  4. from .test_trees import TestTrees
  5. from .test_tools import TestStandalone
  6. from .test_cache import TestCache
  7. from .test_reconstructor import TestReconstructor
  8. try:
  9. from .test_nearley.test_nearley import TestNearley
  10. except ImportError:
  11. logging.warning("Warning: Skipping tests for Nearley grammar imports (js2py required)")
  12. # from .test_selectors import TestSelectors
  13. # from .test_grammars import TestPythonG, TestConfigG
  14. from .test_parser import (
  15. TestLalrStandard,
  16. TestEarleyStandard,
  17. TestCykStandard,
  18. TestLalrContextual,
  19. TestEarleyDynamic,
  20. TestLalrCustom,
  21. # TestFullEarleyStandard,
  22. TestFullEarleyDynamic,
  23. TestFullEarleyDynamic_complete,
  24. TestParsers,
  25. )
  26. logging.basicConfig(level=logging.INFO)
  27. if __name__ == '__main__':
  28. unittest.main()