This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
896 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_reconstructor import TestReconstructor
  7. try:
  8. from .test_nearley.test_nearley import TestNearley
  9. except ImportError:
  10. logging.warning("Warning: Skipping tests for Nearley grammar imports (js2py required)")
  11. # from .test_selectors import TestSelectors
  12. # from .test_grammars import TestPythonG, TestConfigG
  13. from .test_parser import (
  14. TestLalrStandard,
  15. TestEarleyStandard,
  16. TestCykStandard,
  17. TestLalrContextual,
  18. TestEarleyDynamic,
  19. TestLalrCustom,
  20. # TestFullEarleyStandard,
  21. TestFullEarleyDynamic,
  22. TestFullEarleyDynamic_complete,
  23. TestParsers,
  24. )
  25. logging.basicConfig(level=logging.INFO)
  26. if __name__ == '__main__':
  27. unittest.main()