mopidy/.travis.yml
2018-12-02 00:31:59 +01:00

41 lines
702 B
YAML

dist: xenial
language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
env:
- TOX_ENV=py27
- TOX_ENV=docs
- TOX_ENV=flake8
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -y gir1.2-gst-plugins-base-1.0 gir1.2-gstreamer-1.0 graphviz-dev gstreamer1.0-plugins-good gstreamer1.0-plugins-bad python-gst-1.0"
install:
- "pip install tox"
script:
- "tox -e $TOX_ENV"
after_success:
- "if [ $TOX_ENV == 'py27' ]; then pip install coveralls; coveralls; fi"
branches:
except:
- debian
notifications:
irc:
channels:
- "irc.freenode.org#mopidy"
on_success: change
on_failure: change
use_notice: true
skip_join: true