This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

33 rader
661 B

  1. from __future__ import absolute_import, print_function
  2. import unittest
  3. import logging
  4. from .test_trees import TestTrees
  5. try:
  6. from .test_nearley.test_nearley import TestNearley
  7. except ImportError:
  8. pass
  9. # from .test_selectors import TestSelectors
  10. # from .test_grammars import TestPythonG, TestConfigG
  11. from .test_parser import (
  12. TestLalrStandard,
  13. TestEarleyStandard,
  14. TestLalrContextual,
  15. TestEarleyScanless,
  16. TestEarleyDynamic,
  17. TestFullEarleyScanless,
  18. TestFullEarleyDynamic,
  19. TestParsers,
  20. )
  21. logging.basicConfig(level=logging.INFO)
  22. if __name__ == '__main__':
  23. unittest.main()