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

18 řádky
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)