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.
 
 
 
 

23 lines
351 B

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