We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eff5b8 commit a41e298Copy full SHA for a41e298
1 file changed
module_renderer.py
@@ -66,7 +66,7 @@ def _ensure_module_folders_exist(self, module_name: str, first_render_frid: str)
66
f" codeplain {module_name}{plain_file.PLAIN_SOURCE_FILE_EXTENSION}"
67
)
68
69
- if not os.path.exists(conformance_tests_path):
+ if not os.path.exists(conformance_tests_path) and self.args.render_conformance_tests:
70
raise MissingPreviousFunctionalitiesError(
71
f"Cannot start rendering from functionality {first_render_frid} for module '{module_name}' because the conformance tests folder does not exist.\n\n"
72
f"To fix this, please render the module from the beginning by running:\n"
0 commit comments