pywal/.travis.yml

25 lines
520 B
YAML
Raw Normal View History

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