.travis.yml 280B

123456789101112131415161718
  1. sudo: false
  2. language: python
  3. python:
  4. - "3.4"
  5. - "3.5"
  6. - "3.6"
  7. install:
  8. - python setup.py develop
  9. - pip install pytest pytest-cov
  10. - if [[ $TRAVIS_PYTHON_VERSION == 3.4 ]]; then pip install typing; fi
  11. script:
  12. - pytest --cov=hapic tests
  13. after_success:
  14. - coveralls