]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - .travis.yml
travis: show os.statvfs before build, to investigate #2290
[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   - python misc/build_helpers/show-tool-versions.py
9   - python -c "import os; print os.statvfs('.')"
10 install:
11   - pip install 'twisted>=0.13.0'
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}"