blob: 88fabe07206ce8eeb492acd686c3e4e884eec0cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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
|