A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
331 B

  1. dist: xenial
  2. language: python
  3. python:
  4. - 3.5
  5. - 3.6
  6. - 3.7
  7. - 3.8
  8. - 3.9-dev
  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