2017-06-17 07:50:34 +02:00
|
|
|
language: python
|
2018-07-06 00:32:54 +02:00
|
|
|
os: linux
|
|
|
|
dist: xenial
|
|
|
|
sudo: true
|
2017-06-17 07:50:34 +02:00
|
|
|
|
2017-09-12 00:40:22 +02:00
|
|
|
matrix:
|
|
|
|
include:
|
2018-07-06 00:32:54 +02:00
|
|
|
- python: 3.5
|
|
|
|
- python: 3.6
|
2018-07-06 00:42:37 +02:00
|
|
|
# - python: 3.7
|
|
|
|
# dist: xenial
|
|
|
|
# sudo: true
|
2017-09-12 00:40:22 +02:00
|
|
|
|
2017-06-27 09:44:29 +02:00
|
|
|
before_install:
|
2017-09-11 00:46:00 +02:00
|
|
|
- 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
|
2017-06-27 09:44:29 +02:00
|
|
|
|
2017-06-17 07:50:34 +02:00
|
|
|
install:
|
2018-04-01 00:41:01 +02:00
|
|
|
- pip install flake8 pylint
|
2017-06-17 07:50:34 +02:00
|
|
|
|
|
|
|
script:
|
2017-06-27 09:34:34 +02:00
|
|
|
- flake8 pywal tests setup.py
|
2017-07-22 11:12:45 +02:00
|
|
|
- pylint pywal tests setup.py
|
2017-07-24 13:50:09 +02:00
|
|
|
- python setup.py test
|