]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - .travis.yml
.travis.yml: install Twisted explicitly to work around #2249.
[tahoe-lafs/tahoe-lafs.git] / .travis.yml
1 language: python
2 python:
3   - "2.7"
4   - "2.6"
5 before_install:
6   - sh -c set
7 install:
8   - pip install 'twisted>=0.13.0'
9   - pip install 'coveralls==0.4.2'
10 before_script: python misc/build_helpers/show-tool-versions.py
11 script: coverage run --branch --source=allmydata setup.py test --reporter=timing
12 after_success:
13   coveralls
14 notifications:
15   email: false
16   irc:
17     channels: "chat.freenode.net#tahoe-lafs"
18     on_success: always # for testing
19     on_failure: always
20     template:
21       - "%{repository}#%{build_number} [%{branch}: %{commit} by %{author}] %{message}"
22       - "Changes: %{compare_url} | Details: %{build_url}"