]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - .travis.yml
test_web: avoid IP autodetection, was causing dirty reactor
[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 config --global user.email "travis-tahoe@tahoe-lafs.org"
8   - git config --global user.name "Travis Tahoe"
9   - git pull --depth=1000
10   - python misc/build_helpers/show-tool-versions.py
11 install:
12   - pip install 'coveralls==0.4.2'
13 before_script: python setup.py build
14 script: bin/tahoe @coverage run --branch --source=src/allmydata @tahoe --version-and-path debug trial --rterrors --reporter=timing
15 after_success:
16   coveralls
17 notifications:
18   email: false
19   irc:
20     channels: "chat.freenode.net#tahoe-lafs"
21     on_success: always # for testing
22     on_failure: always
23     template:
24       - "%{repository}#%{build_number} [%{branch}: %{commit} by %{author}] %{message}"
25       - "Changes: %{compare_url} | Details: %{build_url}"