Common code for writing OpenStack upgrade checks.
Go to file
Ben Nemec c4283dd0eb Force translation of table header
Concatenation of lazily translated strings using + is not supported,
but prettytable is doing that internally with one of the translated
strings that we pass in. Use six.text_type to force immediate
translation of the string before passing it to prettytable.

Change-Id: I73929f9df85a9856bb70b37ee08f5399f98fdb00
Closes-Bug: 1801761
2018-11-05 18:38:22 +00:00
doc/source Move example implementation to docs 2018-10-09 21:56:06 +00:00
oslo_upgradecheck Force translation of table header 2018-11-05 18:38:22 +00:00
releasenotes Add reno support 2018-10-09 21:56:06 +00:00
.coveragerc Get coverage job working 2018-09-13 16:17:56 +00:00
.gitignore Migrate to stestr 2018-09-13 15:50:37 +00:00
.gitreview Initial commit 2018-09-12 17:35:58 +00:00
.mailmap Initial commit 2018-09-12 17:35:58 +00:00
.stestr.conf Add .zuul.yaml and .stestr.conf 2018-09-20 15:41:08 +00:00
.zuul.yaml Use template for lower-constraints zuul job 2018-10-09 21:57:00 +00:00
CONTRIBUTING.rst Initial commit 2018-09-12 17:35:58 +00:00
HACKING.rst Initial commit 2018-09-12 17:35:58 +00:00
LICENSE Initial commit 2018-09-12 17:35:58 +00:00
README.rst Flesh out readme 2018-09-13 20:30:05 +00:00
babel.cfg Initial commit 2018-09-12 17:35:58 +00:00
lower-constraints.txt Add reno support 2018-10-09 21:56:06 +00:00
requirements.txt Proper requirements specification 2018-09-12 22:39:56 +00:00
setup.cfg Initial commit 2018-09-12 17:35:58 +00:00
setup.py Initial commit 2018-09-12 17:35:58 +00:00
test-requirements.txt Add reno support 2018-10-09 21:56:06 +00:00
tox.ini Add reno support 2018-10-09 21:56:06 +00:00

README.rst

oslo.upgradecheck

Common code for writing OpenStack upgrade checks

This project contains the common code necessary for writing upgrade checks in OpenStack projects. It includes a module (oslo_upgradecheck.upgradecheck) for the common code as well as an example (oslo_upgradecheck.__main__) of integrating that code into a project.