This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

38 lignes
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()