Increment version to 0.2.0.
[pyCraft.git] / .travis.yml
blob34008939e115b1ecc45724741de646c7197b4ba0
1 language: python
2 python: 2.7
3 env:
4   - TOX_ENV=py27
5   - TOX_ENV=py33
6   - TOX_ENV=py34
7   - TOX_ENV=pypy
8   - TOX_ENV=cover
9   - TOX_ENV=flake8
10   - TOX_ENV=pylint-errors
11   - TOX_ENV=pylint-full
12   - TOX_ENV=verify-manifest
13 install:
14   - pip install tox
15   - pip install python-coveralls
16 script:
17   - tox -e $TOX_ENV
18 after_success:
19   - if [ "$TOX_ENV" = "py27" ]; then tox -e coveralls; fi
20 notifications:
21   email: false