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.

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