Skip to content

Commit 51368f3

Browse files
committed
⚙️ Update python.py
Update python.py Update test_update_documentation_python.py Update test_generate_docs_python.py :green_heart: linting
1 parent 0c01df0 commit 51368f3

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

continuous_delivery_scripts/plugins/python.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131

3232
def _create_wheel() -> None:
33+
logger.info("Creating wheel")
3334
root = configuration.get_value(ConfigurationVariable.PROJECT_ROOT)
3435
with cd(root):
3536
check_call(
@@ -155,7 +156,8 @@ def check_credentials(self) -> None:
155156
def generate_code_documentation(self, output_directory: Path, module_to_document: str) -> None:
156157
"""Generates code documentation."""
157158
super().generate_code_documentation(output_directory, module_to_document)
158-
_generate_pdoc_in_correct_structure(module_to_document, output_directory)
159+
# FIXME commented out code documentation as failing
160+
# _generate_pdoc_in_correct_structure(module_to_document, output_directory)
159161

160162
def can_add_licence_headers(self) -> bool:
161163
"""States that licence headers can be added."""
@@ -167,7 +169,8 @@ def can_get_project_metadata(self) -> bool:
167169

168170
def should_include_spdx_in_package(self) -> bool:
169171
"""States whether the SPDX documents should be included in the package."""
170-
return True
172+
# FIXME Comment out SPDX package as no longer working
173+
return False
171174

172175
def get_current_spdx_project(self) -> Optional[SpdxProject]:
173176
"""Gets the current SPDX description."""

0 commit comments

Comments
 (0)