mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-02 11:16:41 +00:00
e80f075347
According to https://github.com/travis-ci/travis-ci/issues/2788 (which was WONTFIXED), roughly half the travis-ci buildserver fleet runs off tmpfs volumes, which have different notions of space-free and space-used than real filesystems. We've adapted our tests to avoid relying upon space-used>0, and no longer need this call to investigate the problem. refs ticket:2290
25 lines
727 B
YAML
25 lines
727 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "2.6"
|
|
before_install:
|
|
- sh -c set
|
|
- git pull --depth=1000
|
|
- python misc/build_helpers/show-tool-versions.py
|
|
install:
|
|
- pip install 'twisted>=0.13.0'
|
|
- pip install 'coveralls==0.4.2'
|
|
before_script: python setup.py build
|
|
script: bin/tahoe @coverage run --branch --source=src/allmydata @tahoe --version-and-path debug trial --rterrors --reporter=timing
|
|
after_success:
|
|
coveralls
|
|
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}"
|