.travis.yml 203B

1234567891011121314151617
  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 -e ."[test]"
  10. script:
  11. - pytest --cov=hapic tests
  12. after_success:
  13. - coveralls