[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
parent
1297458211
commit
a53fcb17de
|
@ -564,8 +564,8 @@ class UpgradeAnalysis(models.Model):
|
||||||
if compare.apriori.renamed_modules[x] == module
|
if compare.apriori.renamed_modules[x] == module
|
||||||
][0]
|
][0]
|
||||||
)
|
)
|
||||||
if module in no_changes_modules:
|
elif module in no_changes_modules:
|
||||||
status += "No changes. "
|
status += "No DB layout changes. "
|
||||||
module_descriptions[module_description.ljust(49, " ")] = status.ljust(
|
module_descriptions[module_description.ljust(49, " ")] = status.ljust(
|
||||||
49, " "
|
49, " "
|
||||||
)
|
)
|
||||||
|
|
|
@ -3,10 +3,10 @@ Module coverage ${start_version} -> ${end_version}
|
||||||
|
|
||||||
.. include:: coverage_legend.rst
|
.. include:: coverage_legend.rst
|
||||||
|
|
||||||
+-------------------------------------------------+-------------------------------------------------+
|
+-------------------------------------------------+----------------------+-------------------------------------------------+
|
||||||
|Module |Status |
|
| Module | Status + Extra Information |
|
||||||
+=================================================+=================================================+
|
+=================================================+======================+=================================================+
|
||||||
% for module, status in module_descriptions.items():
|
% for module, extra_information in module_descriptions.items():
|
||||||
|${module}|${status}|
|
|${module}| |${extra_information}|
|
||||||
+-------------------------------------------------+-------------------------------------------------+
|
+-------------------------------------------------+----------------------+-------------------------------------------------+
|
||||||
% endfor
|
% endfor
|
||||||
|
|
Loading…
Reference in New Issue