PyKMIP/.travis.yml
Peter Hamilton 0308f258a3 Removing coveralls integration
This change removes coveralls integration from PyKMIP, specifically
the tox and TravisCI configuration files. codecov will be the
primary coverage tool used going forward.
2016-12-06 15:00:23 -05:00

26 lines
502 B
YAML

language: python
matrix:
include:
- python: 2.6
env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 2.7
env: TOXENV=pep8
- python: 2.7
env: TOXENV=bandit
install:
- pip install tox
- pip install bandit
- pip install codecov
script:
- tox
after_success:
- codecov