Skip to content
Snippets Groups Projects
.travis.yml 290 B
Newer Older
# http://about.travis-ci.org/docs/user/languages/python/
dist: xenial
python:
  - 2.7
  - 3.4
  - 3.5
  - 3.6
  - 3.7
  - python setup.py install
  - pip install coveralls flake8
script:
  - python setup.py test
  - flake8 mwclient

after_success:
  - coveralls