A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

20 lignes
327 B

  1. dist: xenial
  2. language: python
  3. python:
  4. - 3.4
  5. - 3.5
  6. - 3.6
  7. - 3.7
  8. - 3.8
  9. install:
  10. - pip install coveralls
  11. - python setup.py develop
  12. script:
  13. - coverage run --source=mwparserfromhell -m unittest discover
  14. after_success:
  15. - coveralls
  16. env:
  17. matrix:
  18. - WITHOUT_EXTENSION=0
  19. - WITHOUT_EXTENSION=1