A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
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.
 
 
 
 

18 líneas
440 B

  1. # -*- coding: utf-8 -*-
  2. """
  3. It appears the default distutils test suite doesn't play nice with
  4. ``setUpClass`` thereby making some tests fail. Using ``unittest2`` to load
  5. tests seems to work around that issue.
  6. http://stackoverflow.com/a/17004409/753501
  7. """
  8. import os.path
  9. import unittest
  10. def additional_tests():
  11. project_root = os.path.split(os.path.dirname(__file__))[0]
  12. return unittest.defaultTestLoader.discover(project_root)