hererocks/.travis.yml
Peter Melnichenko 3af691efe9 Fix OS X CI
Do not `brew install` python on OS X, it's already installed on the
new image Travis uses.
2016-10-27 20:09:11 +03:00

22 lines
306 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:
- pip install pyflakes pep8 coverage coveralls nose
script:
- pyflakes .
- pep8 .
- nosetests
- coveralls