From 66293758c0192955148e8b4bd9dd156927c23503 Mon Sep 17 00:00:00 2001 From: Jirka Borovec <6035284+Borda@users.noreply.github.com> Date: Mon, 26 Jun 2023 19:13:18 +0200 Subject: [PATCH] ci: drop aws creds (#17893) --- .github/workflows/ci-examples-app.yml | 4 ---- .github/workflows/ci-tests-app.yml | 4 ---- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/ci-examples-app.yml b/.github/workflows/ci-examples-app.yml index dd2239bcc3..1702f9b69e 100644 --- a/.github/workflows/ci-examples-app.yml +++ b/.github/workflows/ci-examples-app.yml @@ -111,10 +111,6 @@ jobs: - name: Tests working-directory: ./tests - env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - AWS_DEFAULT_REGION: us-east-1 run: | python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \ -m pytest -m "not cloud" integrations_app \ diff --git a/.github/workflows/ci-tests-app.yml b/.github/workflows/ci-tests-app.yml index 1afe96fbea..fc73565cfb 100644 --- a/.github/workflows/ci-tests-app.yml +++ b/.github/workflows/ci-tests-app.yml @@ -118,10 +118,6 @@ jobs: - name: Tests working-directory: ./tests - env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - AWS_DEFAULT_REGION: us-east-1 run: | python -m coverage run --source ${{ env.COVERAGE_SCOPE }} \ -m pytest -m "not cloud" tests_app --timeout=120 -vvvv --durations=50