]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - .travis.yml
.travis.yml: Make sure that update_version has enough history to see the last release...
[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   - git pull --depth=1000
8 install:
9   - pip install 'twisted>=0.13.0'
10   - pip install 'coveralls==0.4.2'
11 before_script: python misc/build_helpers/show-tool-versions.py
12 script: coverage run --branch --source=allmydata setup.py test --reporter=timing
13 after_success:
14   coveralls
15 notifications:
16   email: false
17   irc:
18     channels: "chat.freenode.net#tahoe-lafs"
19     on_success: always # for testing
20     on_failure: always
21     template:
22       - "%{repository}#%{build_number} [%{branch}: %{commit} by %{author}] %{message}"
23       - "Changes: %{compare_url} | Details: %{build_url}"