hererocks/.travis.yml
Peter Melnichenko b2b870c62e Don't run tests on Travis with Python 3.2
coverage.py doesn't support it.
2016-04-27 23:38:35 +03:00

27 lines
479 B
YAML

language: python
matrix:
include:
- os: linux
sudo: false
python: 2.7
cache:
directories: test/cache
- os: linux
sudo: false
python: 3.5
cache:
directories: test/cache
- os: osx
language: generic
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; brew install python; fi
- pip install pyflakes pep8 coverage coveralls nose
script:
- pyflakes .
- pep8 .
- nosetests
- coveralls