Skip to content

Commit

Permalink
update step
Browse files Browse the repository at this point in the history
  • Loading branch information
Noel Gomez committed Dec 21, 2024
1 parent 83d0552 commit 7dc0197
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/integration_airflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,14 @@ jobs:
env:
NO_COLOR: 1
run: |
pytest $AIRFLOW__ARTIFACTS_PATH/test_dags/validate_dags.py | tee /__w/${{ github.event.repository.name }}/${{ github.event.repository.name }}/airflow_validation_tests.md
test_exit_code=${PIPESTATUS[0]}
exit $test_exit_code
bash -c "pytest $AIRFLOW__ARTIFACTS_PATH/test_dags/validate_dags.py | tee /__w/${{ github.event.repository.name }}/${{ github.event.repository.name }}/airflow_validation_tests.md;
test_exit_code=${PIPESTATUS[0]};
exit $test_exit_code"
# pytest $AIRFLOW__ARTIFACTS_PATH/test_dags/validate_dags.py | tee /__w/${{ github.event.repository.name }}/${{ github.event.repository.name }}/airflow_validation_tests.md
# test_exit_code=${PIPESTATUS[0]}
# exit $test_exit_code
- name: Add PR comment of results of custom Airflow validation tests
Expand Down

0 comments on commit 7dc0197

Please sign in to comment.