hererocks/.travis.yml
2016-03-20 22:37:29 +03:00

31 lines
663 B
YAML

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