- language: python
- sudo: false
- python:
- - "2.6"
- - "2.7"
- - "3.5"
- - "3.6"
- install:
- - pip install -r requirements.txt
- - pip install -r requirements.dev.txt
- script:
- - nosetests --with-coverage --cover-package gixy -v
- - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8 --max-line-length=120 setup.py gixy; fi
|