23 lines
389 B
YAML
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
|