This repo contains code to mirror other repos. It also contains the code that is getting mirrored.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 

15 líneas
395 B

  1. from __future__ import absolute_import, print_function
  2. import unittest
  3. import logging
  4. from .test_trees import TestTrees
  5. # from .test_selectors import TestSelectors
  6. from .test_parser import TestLalr, TestEarley, TestLalr_contextual_lexer, TestParsers
  7. # from .test_grammars import TestPythonG, TestConfigG
  8. logging.basicConfig(level=logging.INFO)
  9. if __name__ == '__main__':
  10. unittest.main()