aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: f924d60afaac40c0b32ed6b693ddfe40a8bd1ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: python
python:
    - "3.6"

before_install:
    - sudo apt-get -qq update
    - sudo apt-get install -y imagemagick

install:
    - pip install flake8 pylint

script:
    - flake8 pywal tests setup.py
    - pylint --ignore-imports=yes pywal tests setup.py
    - python setup.py test