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
324 B

  1. language: python
  2. python:
  3. - 2.7
  4. - 3.4
  5. - 3.5
  6. - 3.6
  7. - nightly
  8. sudo: false
  9. install:
  10. - pip install coveralls
  11. - python setup.py build
  12. script:
  13. - coverage run --source=mwparserfromhell setup.py -q test
  14. after_success:
  15. - coveralls
  16. env:
  17. matrix:
  18. - WITHOUT_EXTENSION=0
  19. - WITHOUT_EXTENSION=1