mirror of
https://github.com/dylanaraps/pywal.git
synced 2024-11-07 08:34:01 +01:00
19 lines
334 B
YAML
19 lines
334 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 codecov
|
|
|
|
script:
|
|
- flake8 pywal tests setup.py
|
|
- pylint pywal tests setup.py
|
|
- coverage run --source=my_module/ ./setup.py test
|
|
|
|
after_success:
|
|
- codecov
|