blob: 464bdf86befa09344c0cca076eb992cf252b76f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
language: python
python:
- "3.6"
install:
- pip install flake8 pylint
script:
- flake8 pywal setup.py
- pylint --ignore-imports=yes pywal setup.py
- python setup.py test
|