~graphite-dev/whisper/trunk

56.1.2 by Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
1
language: python
107.2.11 by Bruno Renié
Enable container builds on travis
2
sudo: false
56.1.2 by Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
3
4
python:
5
  - 2.7
6
  - pypy
107.2.2 by Bruno Renié
Add py3 travis targets
7
  - 3.2
8
  - 3.3
107.2.7 by Bruno Renié
Add python 3.4 target
9
  - 3.4
160.1.1 by cclauss
Start testing Python 3.5 and 3.6
10
  - 3.5
11
  - 3.6
160.1.2 by cclauss
Added pypy3
12
  - pypy3
56.1.2 by Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
13
14
install:
113 by Jeff Schroeder
Use the coveralls.io service for code coverage
15
  - pip install .
132.1.1 by Bruno Renié
Fix travis build for python 3.2
16
  - (python --version 2>&1 | grep -q "Python 3.2." && pip install "coverage<4" coveralls) || pip install coverage coveralls
56.1.2 by Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
17
18
script:
19
  - bin/whisper-create.py --help
20
  - bin/whisper-dump.py --help
21
  - bin/whisper-fetch.py --help
124.1.1 by Dave Ertel
Add whisper-fill.py to .travis.yml
22
  - bin/whisper-fill.py --help
56.1.2 by Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
23
  - bin/whisper-info.py --help
24
  - bin/whisper-merge.py --help
25
  - bin/whisper-resize.py --help
26
  - bin/whisper-set-aggregation-method.py --help
27
  - bin/whisper-update.py --help
73.1.1 by Dan Rowe
Add initial whisper-auto-resize script and add contrib files to travis tests
28
  - contrib/whisper-auto-update.py --help
29
  - contrib/whisper-auto-resize.py --help
135.1.1 by obfuscurity
stop testing python2.6
30
  - "if echo $TRAVIS_PYTHON_VERSION | egrep -q '^pypy$'; then pip install unittest2 --use-mirrors; fi"
115 by Jeff Schroeder
Change the travis config a bit
31
  # Coverage of tests ensures we don't have dead coded in the tests
32
  - coverage run --include='whisper.py,test_whisper.py' test_whisper.py
113 by Jeff Schroeder
Use the coveralls.io service for code coverage
33
after_success:
34
  coveralls