.travis.yml 324 B

123456789101112131415
  1. language: python
  2. sudo: false
  3. python:
  4. - "2.6"
  5. - "2.7"
  6. - "3.5"
  7. - "3.6"
  8. install:
  9. - pip install -r requirements.txt
  10. - pip install -r requirements.dev.txt
  11. script:
  12. - nosetests --with-coverage --cover-package gixy -v
  13. - if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8 --max-line-length=120 setup.py gixy; fi