PyKMIP/.travis.yml
Peter Hamilton 66198f46ab Adding support for Codecov
This change updates the .travis.yml file to add support for Codecov
reporting.
2015-11-02 13:56:36 -05:00

19 lines
279 B
YAML

language: python
install:
- pip install tox
- pip install bandit
- pip install codecov
- pip install coveralls
script:
- tox
env:
- TOXENV=pep8
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=bandit
after_success:
- codecov
- coveralls