Codebase list mopidy-beets / debian/3.0.0-1 .travis.yml
debian/3.0.0-1

Tree @debian/3.0.0-1 (Download .tar.gz)

.travis.yml @debian/3.0.0-1raw · history · blame

sudo: false

language: python

python:
  - "2.7_with_system_site_packages"

env:
  - TOX_ENV=py27
  - TOX_ENV=flake8

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