Skip to content
Snippets Groups Projects
test_dags.sh 294 B
Newer Older
  • Learn to ignore specific revisions
  • chmod +x tests/set_airflow_env.sh
    tests/./set_airflow_env.sh > /dev/null  2>&1
    rm -r /usr/local/airflow/plugins/tests
    export FLASK_APP=/mock-server/app.py && flask run &
    
    timeout 700 python /mock-server/test_dags.py  || EXIT_CODE=$?
    cp -r /usr/local/airflow/logs logs/
    
    exit $EXIT_CODE