.travis.yml 193B

12345678910111213141516
  1. sudo: false
  2. language: python
  3. python:
  4. - "3.5"
  5. - "3.6"
  6. install:
  7. - python setup.py develop
  8. - pip install -e ."[test]"
  9. script:
  10. - pytest --cov=hapic tests
  11. after_success:
  12. - coveralls