]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - .travis.yml
introducer: stop tracking hints for subscribed clients
[tahoe-lafs/tahoe-lafs.git] / .travis.yml
1 sudo: false
2 language: python
3 python:
4   - "2.7"
5   - "2.6"
6   - "pypy"
7 before_install:
8   - sh -c set
9   - git config --global user.email "travis-tahoe@tahoe-lafs.org"
10   - git config --global user.name "Travis Tahoe"
11   - git fetch --depth=1000
12   - python misc/build_helpers/show-tool-versions.py
13 install:
14   - pip install 'coveralls==0.4.2'
15 before_script: python setup.py build
16 script: bin/tahoe @coverage run --branch --source=src/allmydata @tahoe --version-and-path debug trial --rterrors --reporter=timing
17 after_success:
18   coveralls
19 notifications:
20   email: false
21   irc:
22     channels: "chat.freenode.net#tahoe-lafs"
23     on_success: always # for testing
24     on_failure: always
25     template:
26       - "%{repository}#%{build_number} [%{branch}: %{commit} by %{author}] %{message}"
27       - "Changes: %{compare_url} | Details: %{build_url}"
28 matrix:
29   allow_failures:
30     - python: "pypy"
31   fast_finish: true