.travis.yml 388 B

1234567891011121314151617
  1. language: python
  2. cache: pip
  3. python:
  4. - 2.7
  5. install:
  6. - pip install -r requirements.txt
  7. before_script:
  8. - openssl version -a
  9. script:
  10. - python -m pytest src/Test --cov=src --cov-config src/Test/coverage.ini
  11. before_install:
  12. - pip install -U pytest mock pytest-cov
  13. - pip install codecov
  14. - pip install coveralls
  15. after_success:
  16. - codecov
  17. - coveralls --rcfile=src/Test/coverage.ini