A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

18 righe
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)