aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 11a9bfdc8ffb6e2138dcf3dd4edaaab23f5d096b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: python

matrix:
    include:
        - os: linux
          python: 3.5
        - os: linux
          python: 3.6

before_install:
    - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
    - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y imagemagick; fi

install:
    - pip install flake8 pylint

script:
    - flake8 pywal tests setup.py
    - pylint pywal tests setup.py
    - python setup.py test