mirror of
https://github.com/rembo10/headphones.git
synced 2026-04-29 08:19:27 +01:00
22 lines
481 B
YAML
22 lines
481 B
YAML
# Travis CI configuration file
|
|
# http://about.travis-ci.org/docs/
|
|
|
|
language: python
|
|
|
|
# Available Python versions:
|
|
# http://about.travis-ci.org/docs/user/ci-environment/#Python-VM-images
|
|
python:
|
|
- "2.6"
|
|
- "2.7"
|
|
# pylint 1.4 does not run under python 2.6
|
|
install:
|
|
- pip install pyOpenSSL
|
|
- pip install pylint==1.3.1
|
|
- pip install pyflakes
|
|
- pip install pep8
|
|
script:
|
|
- pep8 headphones
|
|
- pylint --rcfile=pylintrc headphones
|
|
- pyflakes headphones
|
|
- nosetests headphones
|