2015-09-22 12:10:15 -07:00
|
|
|
sudo: false
|
2013-08-31 21:35:19 +01:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "2.6"
|
2015-07-29 12:21:31 +10:00
|
|
|
- "pypy"
|
2013-08-31 21:35:19 +01: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"
|
2015-09-22 12:10:15 -07:00
|
|
|
- git fetch --depth=1000
|
2014-09-01 20:57:22 +01:00
|
|
|
- python misc/build_helpers/show-tool-versions.py
|
2014-09-01 15:29:13 +01:00
|
|
|
install:
|
2015-10-01 01:11:14 +01:00
|
|
|
- pip install 'coverage==3.7.1' # see https://tahoe-lafs.org/trac/tahoe-lafs/ticket/2511
|
|
|
|
- pip install coveralls
|
2014-09-01 20:57:22 +01:00
|
|
|
before_script: python setup.py build
|
2015-01-26 22:05:38 -08:00
|
|
|
script: bin/tahoe @coverage run --branch --source=src/allmydata @tahoe --version-and-path debug trial --rterrors --reporter=timing
|
2014-09-01 15:29:13 +01:00
|
|
|
after_success:
|
|
|
|
coveralls
|
2013-09-01 02:49:03 +01: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 12:21:31 +10:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
- python: "pypy"
|
|
|
|
fast_finish: true
|