pankajastro commented on code in PR #28850:
URL: https://github.com/apache/airflow/pull/28850#discussion_r1122760684
##########
.github/workflows/ci.yml:
##########
@@ -801,6 +801,30 @@ jobs:
run: breeze ci fix-ownership
if: always()
+ tests-aws-async-provider:
+ timeout-minutes: 50
+ name: "Pytest for AWS Async Provider"
+ runs-on: "${{needs.build-info.outputs.runs-on}}"
+ needs: [build-info, wait-for-ci-images]
+ if: needs.build-info.outputs.run-tests == 'true'
+ steps:
+ - name: Cleanup repo
+ shell: bash
+ run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm
-rf /workspace/*"
+ - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
+ uses: actions/checkout@v3
+ with:
+ persist-credentials: false
+ - name: "Prepare breeze & CI image"
+ uses: ./.github/actions/prepare_breeze_and_image
+ - name: "Run AWS Async Test"
+ run: "breeze shell \
+ 'pip install aiobotocore>=2.1.1 && pytest
/opt/airflow/tests/providers/amazon/aws/deferrable'"
Review Comment:
right, but I'm also not sure if that require right now.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]