mirror of
https://github.com/rembo10/headphones.git
synced 2026-01-08 22:28:11 -05:00
26 lines
359 B
YAML
26 lines
359 B
YAML
# Travis CI configuration file
|
|
# http://about.travis-ci.org/docs/
|
|
|
|
language: python
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
pip: true
|
|
directories:
|
|
- lib
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
install:
|
|
- pip install -r requirements-dev.txt
|
|
|
|
script:
|
|
- pep8 headphones
|
|
- pyflakes headphones
|
|
- nosetests
|
|
|
|
after_success:
|
|
- if [[ $TRAVIS_PYTHON_VERSION == "2.7" ]]; then coveralls; fi
|