hererocks/.travis.yml
2016-06-21 20:43:04 +03:00

23 lines
389 B
YAML

language: python
matrix:
include:
- os: linux
sudo: false
python: 2.7
- os: linux
sudo: false
python: 3.5
- 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