mirror of
https://github.com/OpenKMIP/PyKMIP.git
synced 2025-04-08 19:25:06 +02:00
This update includes a bunch of new features and bug fixes: * Add client support for the DiscoverVersions and Query operations * Add client support for the CreateKeyPair and RekeyKeyPair operations * Add support for registering and retrieving Public/PrivateKeys * Add unit demos showing how to use individual KMIP client operations * Add client custom configuration support * Add inline documentation for new KMIP objects, attributes and payloads * Add unit tests for new KMIP objects, attributes, and payloads * Add a dependency for the six library to handle Python version support * Update README with a condensed description and overview of the library * Fix bug with unindexed format strings * Fix missing example certificate files when installing library
17 lines
325 B
INI
17 lines
325 B
INI
[tox]
|
|
envlist = pep8,py26,py27,py33,py34
|
|
|
|
[testenv]
|
|
deps = -r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/test-requirements.txt
|
|
|
|
commands =
|
|
coverage run --source=kmip/ -m pytest --strict {posargs}
|
|
coverage report
|
|
|
|
[testenv:pep8]
|
|
commands = flake8 {posargs}
|
|
|
|
[flake8]
|
|
exclude = .git,.tox,dist,rpmbuild,*.egg-info
|