Skip to content

Commit 92c34d0

Browse files
Merge pull request #514 from OP-TED/feature/TED4-89
update RMLMapper version
2 parents 9a6a39a + a83824a commit 92c34d0

5 files changed

Lines changed: 5 additions & 58 deletions

File tree

requirements.dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ pytest-subtests~=0.6.0
77
tox~=3.24.5
88
tox-pytest-summary~=0.1.2
99
mongomock==4.1.2
10-
uvicorn[standard]
10+
uvicorn[standard]==0.24.0
1111
allure-pytest-bdd==2.10.0
1212
pycurl~=7.45.2

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ ordered-set~=4.0.2
2525
json2html~=1.3.0
2626
minio~=7.1.1
2727
certifi~=2022.12.7
28-
shortuuid~=1.0.11
28+
shortuuid~=1.0.11
29+
pendulum~=2.1.2

ted_sws/mapping_suite_processor/adapters/yarrrml2rml_converter.py

Lines changed: 0 additions & 35 deletions
This file was deleted.

tests/e2e/mapping_suite_processor/test_yarrrml2rml_converter.py

Lines changed: 0 additions & 20 deletions
This file was deleted.

tests/features/notice_publisher/test_notice_publisher.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ def the_notice_publication_by_id_is_executed(publish_notice_id, notice_repositor
7878
def the_mets_package_available_in_a_shared_sftp_drive(published_notice: Notice, sftp_remote_folder_path):
7979
"""the METS package available in a shared SFTP drive."""
8080
publisher: SFTPPublisher = SFTPPublisher()
81-
remote_notice_path = f"{sftp_remote_folder_path}/{published_notice.ted_id}.zip"
81+
assert published_notice.mets_manifestation
82+
remote_notice_path = f"{sftp_remote_folder_path}/{published_notice.mets_manifestation.package_name}"
8283
publisher.connect()
8384
assert publisher.exists(remote_path=remote_notice_path)
8485
publisher.disconnect()

0 commit comments

Comments
 (0)