Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion module_renderer.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _ensure_module_folders_exist(self, module_name: str, first_render_frid: str)
f" codeplain {module_name}{plain_file.PLAIN_SOURCE_FILE_EXTENSION}"
)

if not os.path.exists(conformance_tests_path):
if not os.path.exists(conformance_tests_path) and self.args.render_conformance_tests:
raise MissingPreviousFunctionalitiesError(
f"Cannot start rendering from functionality {first_render_frid} for module '{module_name}' because the conformance tests folder does not exist.\n\n"
f"To fix this, please render the module from the beginning by running:\n"
Expand Down
Loading