[REF] in coverage module file, split column into 2. a column that should be filled by openupgrader, and a column that is automatically filled when importing apriori and making analysis

pull/2417/head
Sylvain LE GAL 2021-11-15 11:23:15 +01:00 committed by Stefan Rijnhart
parent 1297458211
commit a53fcb17de
2 changed files with 8 additions and 8 deletions

View File

@ -564,8 +564,8 @@ class UpgradeAnalysis(models.Model):
if compare.apriori.renamed_modules[x] == module
][0]
)
if module in no_changes_modules:
status += "No changes. "
elif module in no_changes_modules:
status += "No DB layout changes. "
module_descriptions[module_description.ljust(49, " ")] = status.ljust(
49, " "
)

View File

@ -3,10 +3,10 @@ Module coverage ${start_version} -> ${end_version}
.. include:: coverage_legend.rst
+-------------------------------------------------+-------------------------------------------------+
|Module |Status |
+=================================================+=================================================+
% for module, status in module_descriptions.items():
|${module}|${status}|
+-------------------------------------------------+-------------------------------------------------+
+-------------------------------------------------+----------------------+-------------------------------------------------+
| Module | Status + Extra Information |
+=================================================+======================+=================================================+
% for module, extra_information in module_descriptions.items():
|${module}| |${extra_information}|
+-------------------------------------------------+----------------------+-------------------------------------------------+
% endfor