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.
 
 
 
 

39 lines
892 B

  1. name: Tests
  2. on: [push, pull_request]
  3. jobs:
  4. test:
  5. strategy:
  6. matrix:
  7. python-version:
  8. - 3.6
  9. - 3.7
  10. - 3.8
  11. - 3.9
  12. - "3.10"
  13. with-extension: ["0", "1"]
  14. runs-on: ubuntu-18.04
  15. steps:
  16. - uses: actions/checkout@v2
  17. - name: Set up Python ${{ matrix.python-version }}
  18. uses: actions/setup-python@v2
  19. with:
  20. python-version: ${{ matrix.python-version }}
  21. - name: Install dependencies
  22. run: |
  23. python -m pip install --upgrade pip
  24. pip install coveralls pytest
  25. python setup.py develop
  26. - name: Run tests
  27. env:
  28. WITHOUT_EXTENSION: ${{ matrix.with-extension }}
  29. run: |
  30. coverage run --source=mwparserfromhell -m pytest
  31. - name: Submit to coveralls
  32. env:
  33. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  34. run: |
  35. coveralls