This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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