This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

35 řádky
725 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. try:
  7. from .test_nearley.test_nearley import TestNearley
  8. except ImportError:
  9. pass
  10. # from .test_selectors import TestSelectors
  11. # from .test_grammars import TestPythonG, TestConfigG
  12. from .test_parser import (
  13. TestLalrStandard,
  14. TestEarleyStandard,
  15. TestCykStandard,
  16. TestLalrContextual,
  17. TestEarleyScanless,
  18. TestEarleyDynamic,
  19. TestFullEarleyScanless,
  20. TestFullEarleyDynamic,
  21. TestParsers,
  22. )
  23. logging.basicConfig(level=logging.INFO)
  24. if __name__ == '__main__':
  25. unittest.main()