From 0308f258a3625ee6ed23795bc7c2af917125fedb Mon Sep 17 00:00:00 2001 From: Peter Hamilton Date: Tue, 6 Dec 2016 15:00:23 -0500 Subject: [PATCH] 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. --- .travis.yml | 2 -- tox.ini | 1 - 2 files changed, 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7415e91..de5a342 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,9 +19,7 @@ install: - pip install tox - pip install bandit - pip install codecov - - pip install coveralls script: - tox after_success: - codecov - - coveralls diff --git a/tox.ini b/tox.ini index 8af5639..5702524 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,6 @@ passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt - coveralls commands = coverage run --source=kmip/ --omit=kmip/demos/*,kmip/tests/* -m pytest --strict kmip/tests/unit