.travis.yml 347 B

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