Skip to content

Commit 67d6806

Browse files
committed
fix: 🐛 switch to global env variables for aws config
1 parent 61f3dd6 commit 67d6806

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/test-integration-localstack.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ on:
44
pull_request:
55
branches: [master, feature]
66

7+
env:
8+
AWS_DEFAULT_REGION: eu-west-1
9+
AWS_REGION: eu-west-1
10+
AWS_ACCESS_KEY_ID: test
11+
AWS_SECRET_ACCESS_KEY: test
12+
713
jobs:
814
test:
915
runs-on: ubuntu-latest
@@ -30,11 +36,6 @@ jobs:
3036
run: |
3137
bin/deploy.sh
3238
- name: Run integration tests against LocalStack
33-
env:
34-
AWS_DEFAULT_REGION: eu-west-1
35-
AWS_REGION: eu-west-1
36-
AWS_ACCESS_KEY_ID: test
37-
AWS_SECRET_ACCESS_KEY: test
3839
run: |
3940
python -m pytest tests/integration
4041
- name: Show localstack logs

0 commit comments

Comments
 (0)