123456789101112131415161718192021222324252627 |
- language: python
- python: 2.7
- env:
- global:
- PYTHONUNBUFFERED=yes
- matrix:
- - TOXENV=2.7
- - TOXENV=3.3
- - TOXENV=3.4
- - TOXENV=pypy
- before_install:
- - |
- python --version
- uname -a
- lsb_release -a
- install:
- - pip install tox
- script:
- - tox -v -- -v
- after_success:
- - .tox/$TRAVIS_PYTHON_VERSION/bin/coveralls
- notifications:
- irc:
- channels:
- - "chat.freenode.net#celery"
- on_success: change
- on_failure: change
|