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.
 
 
 
 

24 lines
439 B

  1. language: python
  2. python:
  3. - 2.6
  4. - 2.7
  5. - 3.2
  6. - 3.3
  7. - 3.4
  8. - 3.5
  9. - 3.6
  10. - nightly
  11. sudo: false
  12. install:
  13. - if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install coverage==3.7.1; fi
  14. - pip install coveralls
  15. - python setup.py build
  16. script:
  17. - coverage run --source=mwparserfromhell setup.py -q test
  18. after_success:
  19. - coveralls
  20. env:
  21. matrix:
  22. - WITHOUT_EXTENSION=0
  23. - WITHOUT_EXTENSION=1