.travis.yml 360 B

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