This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

30 satır
623 B

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