pywal/.travis.yml
2017-07-23 20:38:15 +10:00

20 lines
378 B
YAML

language: python
python:
- "3.6"
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y imagemagick
install:
- pip install flake8 pylint codecov
script:
- flake8 pywal tests setup.py
- pylint pywal tests setup.py
- coverage run --source=pywal/ ./setup.py test
- coverage report --omit=pywal/wallpaper.py
after_success:
- codecov