mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-08 00:54:07 +01:00
16 lines
272 B
YAML
16 lines
272 B
YAML
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 pywal tests setup.py
|
|
- python setup.py test
|