]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - .travis.yml
Support coverage reporting via coverage.io. refs #623
[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 'coveralls==0.4.2'
9 before_script: python misc/build_helpers/show-tool-versions.py
10 script: coverage run --branch --source=allmydata setup.py test --reporter=timing
11 after_success:
12   coveralls
13 notifications:
14   email: false
15   irc:
16     channels: "chat.freenode.net#tahoe-lafs"
17     on_success: always # for testing
18     on_failure: always
19     template:
20       - "%{repository}#%{build_number} [%{branch}: %{commit} by %{author}] %{message}"
21       - "Changes: %{compare_url} | Details: %{build_url}"