2013-08-31 20:35:19 +00:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "2.6"
|
2015-07-29 02:21:31 +00:00
|
|
|
- "pypy"
|
2013-08-31 20:35:19 +00:00
|
|
|
before_install:
|
|
|
|
- sh -c set
|
2014-11-27 16:37:25 +00:00
|
|
|
- git config --global user.email "travis-tahoe@tahoe-lafs.org"
|
|
|
|
- git config --global user.name "Travis Tahoe"
|
2014-09-02 14:08:58 +00:00
|
|
|
- git pull --depth=1000
|
2014-09-01 19:57:22 +00:00
|
|
|
- python misc/build_helpers/show-tool-versions.py
|
2014-09-01 14:29:13 +00:00
|
|
|
install:
|
|
|
|
- pip install 'coveralls==0.4.2'
|
2014-09-01 19:57:22 +00:00
|
|
|
before_script: python setup.py build
|
2015-01-27 06:05:38 +00:00
|
|
|
script: bin/tahoe @coverage run --branch --source=src/allmydata @tahoe --version-and-path debug trial --rterrors --reporter=timing
|
2014-09-01 14:29:13 +00:00
|
|
|
after_success:
|
|
|
|
coveralls
|
2013-09-01 01:49:03 +00:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
irc:
|
|
|
|
channels: "chat.freenode.net#tahoe-lafs"
|
|
|
|
on_success: always # for testing
|
|
|
|
on_failure: always
|
|
|
|
template:
|
|
|
|
- "%{repository}#%{build_number} [%{branch}: %{commit} by %{author}] %{message}"
|
|
|
|
- "Changes: %{compare_url} | Details: %{build_url}"
|
2015-07-29 02:21:31 +00:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- python: "pypy"
|
|
|
|
fast_finish: true
|