~graphite-dev/whisper/trunk

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: python
sudo: false

python:
  - 2.7
  - pypy
  - 3.2
  - 3.3
  - 3.4
  - 3.5
  - 3.6
  - pypy3

install:
  - pip install .
  - (python --version 2>&1 | grep -q "Python 3.2." && pip install "coverage<4" coveralls) || pip install coverage coveralls

script:
  - bin/whisper-create.py --help
  - bin/whisper-dump.py --help
  - bin/whisper-fetch.py --help
  - bin/whisper-fill.py --help
  - bin/whisper-info.py --help
  - bin/whisper-merge.py --help
  - bin/whisper-resize.py --help
  - bin/whisper-set-aggregation-method.py --help
  - bin/whisper-update.py --help
  - contrib/whisper-auto-update.py --help
  - contrib/whisper-auto-resize.py --help
  - "if echo $TRAVIS_PYTHON_VERSION | egrep -q '^pypy$'; then pip install unittest2 --use-mirrors; fi"
  # Coverage of tests ensures we don't have dead coded in the tests
  - coverage run --include='whisper.py,test_whisper.py' test_whisper.py
after_success:
  coveralls