Skip to content

Commit

Permalink
update to 2024.05.01 (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nora-Olivia-Ammann authored May 8, 2024
1 parent eacd935 commit 3c01e2a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dsp/dsp-api
Submodule dsp-api updated 199 files
2 changes: 1 addition & 1 deletion dsp/dsp-app
2 changes: 1 addition & 1 deletion dsp/dsp-tools
Submodule dsp-tools updated 46 files
+1 −1 .github/workflows/tests-on-push.yml
+10 −7 .pre-commit-config.yaml
+25 −0 CHANGELOG.md
+ docs/assets/data_model_templates/lists/new_lists.xlsx
+ docs/assets/images/img-excel2json-list-columns-correct.png
+ docs/assets/images/img-excel2json-list-columns-incorrect.png
+ docs/assets/images/img-excel2json-list-node-missing-node.png
+ docs/assets/images/img-excel2json-list-sorting-incorrect.png
+ docs/assets/images/img-excel2json-list-translation-incorrect.png
+ docs/assets/images/img-excel2json-new-lists.png
+34 −5 docs/cli-commands.md
+118 −1 docs/file-formats/excel2json.md
+373 −374 poetry.lock
+6 −6 pyproject.toml
+22 −0 src/dsp_tools/cli/call_action.py
+27 −0 src/dsp_tools/cli/create_parsers.py
+201 −0 src/dsp_tools/commands/excel2json/models/input_error.py
+109 −0 src/dsp_tools/commands/excel2json/models/list_node.py
+699 −0 src/dsp_tools/commands/excel2json/new_lists.py
+99 −2 src/dsp_tools/commands/excel2json/project.py
+1 −1 src/dsp_tools/commands/excel2json/properties.py
+9 −8 src/dsp_tools/commands/excel2json/resources.py
+84 −81 src/dsp_tools/commands/excel2xml/excel2xml_lib.py
+1 −1 src/dsp_tools/commands/project/create/project_validate.py
+42 −1 src/dsp_tools/commands/start_stack.py
+1 −1 src/dsp_tools/commands/xmlupload/models/ontology_problem_models.py
+1 −1 src/dsp_tools/commands/xmlupload/xmlupload.py
+10 −1 src/dsp_tools/models/custom_warnings.py
+8 −1 src/dsp_tools/models/exceptions.py
+4 −4 src/dsp_tools/resources/start-stack/docker-compose.yml
+1 −1 src/dsp_tools/resources/start-stack/start-stack-config.yml
+3 −1 src/dsp_tools/utils/warnings_config.py
+1 −1 src/dsp_tools/utils/xml_validation.py
+0 −172 test/integration/commands/excel2json/test_lists.py
+192 −0 test/unittests/commands/excel2json/test_list_node.py
+103 −0 test/unittests/commands/excel2json/test_models_list_node.py
+593 −0 test/unittests/commands/excel2json/test_new_lists.py
+794 −0 test/unittests/commands/excel2json/test_new_lists_compliance_checks.py
+81 −12 test/unittests/commands/excel2json/test_resources.py
+9 −8 test/unittests/commands/excel2xml/test_excel2xml_lib.py
+1 −1 test/unittests/commands/xmlupload/test_check_consistency_with_ontology.py
+1 −0 testdata/excel2json/new_excel2json_files/.hidden_file
+ testdata/excel2json/new_excel2json_files/lists/lists.xlsx
+1 −0 testdata/excel2json/new_excel2json_files/test-name (test_label)/.hidden_file
+ testdata/excel2json/new_excel2json_files/test-name (test_label)/properties.xlsx
+ testdata/excel2json/new_excel2json_files/test-name (test_label)/resources.xlsx

0 comments on commit 3c01e2a

Please sign in to comment.