ENH: xlsx template generator
2 unresolved threads
2 unresolved threads
Summary
Allows to create XLSX templates
Focus
Test Environment
unit test (including one for all dimr schemas which is to be removed)
Check List for the Author
Please, prepare your MR for a review. Be sure to write a summary and a focus and create gitlab comments for the reviewer. They should guide the reviewer through the changes, explain your changes and also point out open questions. For further good practices have a look at our review guidelines
-
All automated tests pass -
Reference related issues -
Up-to-date CHANGELOG.md (or not necessary) -
Up-to-date JSON schema (or not necessary) -
Appropriate user and developer documentation (or not necessary) - How do I use the software? Assume "stupid" users.
- How do I develop or debug the software? Assume novice developers.
-
Annotations in code (Gitlab comments) - Intent of new code
- Problems with old code
- Why this implementation?
Check List for the Reviewer
-
I understand the intent of this MR -
All automated tests pass -
Up-to-date CHANGELOG.md (or not necessary) -
Appropriate user and developer documentation (or not necessary) -
The test environment setup works and the intended behavior is reproducible in the test environment -
In-code documentation and comments are up-to-date. -
Check: Are there specifications? Are they satisfied?
For further good practices have a look at our review guidelines.
Edited by Daniel Hornung
Merge request reports
Activity
assigned to @henrik
added 2 commits
- Resolved by Daniel Hornung
126 raise ValueError(f"A foreign key definition is missing for path: \n{path}\n{keys}") 127 keys = keys[cpath[0]] 128 if isinstance(keys, list): 129 selected_keys, keys = keys, None 130 else: 131 selected_keys, keys = None, keys 132 cpath = cpath[1:] 133 if isinstance(keys, dict) and "__this__" in keys: 134 selected_keys = keys["__this__"] 135 136 if selected_keys is None: 137 raise ValueError(f"A foreign key definition is missing for path:" 138 f"\n{path}\n{foreign_keys}") 139 return selected_keys 140 141 def _treat_schema_element(self, schema: dict, sheets: dict = None, path: list = None, changed this line in version 10 of the diff
- Resolved by Daniel Hornung
- Resolved by Daniel Hornung
requested review from @daniel
added 1 commit
- e1b5fd4a - TEST: Full test for hidden rows and columns.
enabled an automatic merge when the pipeline for ef005f5b succeeds
mentioned in commit 79500a20
Please register or sign in to reply