Skip to content

Commit

Permalink
Merge pull request #313 from OP-TED/feature/TED-837
Browse files Browse the repository at this point in the history
Feature/ted 837
  • Loading branch information
costezki authored Oct 17, 2022
2 parents 8c4ea16 + 7d89549 commit bf9a0c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion dags/notice_validation_workflow.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from datetime import timedelta, datetime

from airflow.decorators import dag, task
from airflow.operators.python import get_current_context
from pymongo import MongoClient

from dags import DEFAULT_DAG_ARGUMENTS
Expand Down
2 changes: 2 additions & 0 deletions dags/pipelines/notice_processor_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
from ted_sws.notice_transformer.services.notice_transformer import transform_notice
from ted_sws.notice_validator.services.shacl_test_suite_runner import validate_notice_with_shacl_suite
from ted_sws.notice_validator.services.sparql_test_suite_runner import validate_notice_with_sparql_suite
from ted_sws.notice_validator.services.validation_summary_runner import validation_summary_report_notice
from ted_sws.notice_validator.services.xpath_coverage_runner import validate_xpath_coverage_notice


Expand Down Expand Up @@ -56,6 +57,7 @@ def notice_validation_pipeline(notice: Notice, mongodb_client: MongoClient) -> N
validate_xpath_coverage_notice(notice=notice, mapping_suite=mapping_suite, mongodb_client=mongodb_client)
validate_notice_with_sparql_suite(notice=notice, mapping_suite_package=mapping_suite)
validate_notice_with_shacl_suite(notice=notice, mapping_suite_package=mapping_suite)
validation_summary_report_notice(notice=notice)
return NoticePipelineOutput(notice=notice)


Expand Down

0 comments on commit bf9a0c9

Please sign in to comment.