Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/integration-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,21 @@ jobs:
timeout: 5
extra-deps: ""
ignore: ""
- group: policy
path: tests_integ/policy
timeout: 15
extra-deps: ""

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

q: are these required if they are just empty?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One of the workflow steps uses ${{ matrix.extra-deps }} and ${{ matrix.ignore }}. I'm not sure if it would resolve to empty string on its own without including the blank fields in each matrix. I added the empty fields for consistency with existing matrices

ignore: ""
- group: gateway
path: tests_integ/gateway
timeout: 15
extra-deps: ""
ignore: ""
- group: identity
path: tests_integ/identity/test_identity_client.py
timeout: 15
extra-deps: ""
ignore: ""
steps:
- name: Configure Credentials
uses: aws-actions/configure-aws-credentials@v6
Expand Down Expand Up @@ -172,6 +187,15 @@ jobs:
MEMORY_PREPOPULATED_ID: ${{ secrets.MEMORY_PREPOPULATED_ID }}
RESOURCE_POLICY_TEST_ARN: ${{ secrets.RESOURCE_POLICY_TEST_ARN }}
RESOURCE_POLICY_TEST_PRINCIPAL: ${{ secrets.RESOURCE_POLICY_TEST_PRINCIPAL }}
GATEWAY_ROLE_ARN: ${{ secrets.GATEWAY_ROLE_ARN }}
GATEWAY_LAMBDA_ARN: ${{ secrets.GATEWAY_LAMBDA_ARN }}
EVAL_ROLE_ARN: ${{ secrets.EVAL_ROLE_ARN }}
EVAL_LOG_GROUP: ${{ secrets.EVAL_LOG_GROUP }}
RUNTIME_ROLE_ARN: ${{ secrets.RUNTIME_ROLE_ARN }}
RUNTIME_S3_CODE_URI: ${{ secrets.RUNTIME_S3_CODE_URI }}
COGNITO_POOL_ID: ${{ secrets.COGNITO_POOL_ID }}
COGNITO_CLIENT_ID: ${{ secrets.COGNITO_CLIENT_ID }}
COGNITO_CLIENT_SECRET: ${{ secrets.COGNITO_CLIENT_SECRET }}
id: tests
timeout-minutes: ${{ matrix.timeout }}
run: |
Expand Down
Loading