-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a8fb62
commit 99d0fe8
Showing
1 changed file
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
*** Settings *** | ||
Documentation Legion Airflow check | ||
Resource resources/keywords.robot | ||
Variables load_variables_from_profiles.py ${PATH_TO_PROFILES_DIR} | ||
Documentation Legion stack operational check | ||
Resource ../../resources/keywords.robot | ||
Resource ../../resources/variables.robot | ||
Variables ../../load_variables_from_profiles.py ${PATH_TO_PROFILES_DIR} | ||
Library legion_test.robot.Utils | ||
|
||
*** Test Cases *** | ||
Check test dags should not fail | ||
[Documentation] Connect to Airflow and check the status of test dags are not failed | ||
[Tags] airflow airflow-api | ||
:FOR ${enclave} IN @{ENCLAVES} | ||
\ Invoke and check test dags for valid status code ${enclave} | ||
\ Connect to enclave Airflow ${enclave} | ||
${dags} = Find Airflow DAGs | ||
Should not be empty ${dags} | ||
${failed_dags} = Get failed Airflow DAGs | ||
Should Not Contain ${failed_dags} example_python_work | ||
Should Not Contain ${failed_dags} s3_connection_test |