X-Git-Url: https://git.rkrishnan.org/?a=blobdiff_plain;f=.travis.yml;h=5df0e85d78815660f829ea00132041f5afca6997;hb=refs%2Fheads%2F2438.magic-folder-stable.7;hp=e54d5bf0dbbcff4777cd55969936458aea8344b8;hpb=9566b3d45cc344c0f9c43ee4619c42762c1d572e;p=tahoe-lafs%2Ftahoe-lafs.git diff --git a/.travis.yml b/.travis.yml index e54d5bf0..5df0e85d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,18 @@ +sudo: false language: python python: - "2.7" - - "2.6" + - "pypy" before_install: - sh -c set - - git pull --depth=1000 + - git config --global user.email "travis-tahoe@tahoe-lafs.org" + - git config --global user.name "Travis Tahoe" + - git fetch --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 misc/build_helpers/show-tool-versions.py -script: coverage run --branch --source=src/allmydata setup.py test --reporter=timing + - pip install coverage coveralls +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: @@ -21,3 +24,7 @@ notifications: template: - "%{repository}#%{build_number} [%{branch}: %{commit} by %{author}] %{message}" - "Changes: %{compare_url} | Details: %{build_url}" +matrix: + allow_failures: + - python: "pypy" + fast_finish: true