Skip to content
Snippets Groups Projects
Commit 991e0174 authored by Siarhei Khaletski (EPAM)'s avatar Siarhei Khaletski (EPAM) :triangular_flag_on_post:
Browse files

Merge branch 'GONRG-2017_Add_manifest_ingestion_dag_to_test_workflow' into 'master'

GONRG-2017: Add manifest_ingestion test file to repo

See merge request !53
parents 281a14d3 30d037b0
No related branches found
No related tags found
1 merge request!53GONRG-2017: Add manifest_ingestion test file to repo
Pipeline #39675 passed
"""Temporary DAG for tests."""
import airflow
from airflow import DAG
from airflow.operators.bash_operator import BashOperator
default_args = {
"start_date": airflow.utils.dates.days_ago(0),
}
with DAG(
"manifest_ingestion",
default_args=default_args,
description="The DAG is used for testing Workflow service, it does nothing but returns "
"OK status only to Workflow service.",
schedule_interval=None
) as dag:
t1 = BashOperator(task_id="echo", bash_command="echo test")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment