File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 46
46
cd collect-raw-metric-data-extension && make install
47
47
- name : Setup LocalStack
48
48
env :
49
- LOCALSTACK_API_KEY : ${{ secrets.TEST_LOCALSTACK_API_KEY }}
49
+ LOCALSTACK_AUTH_TOKEN : ${{ secrets.TEST_LOCALSTACK_AUTH_TOKEN }}
50
50
run : |
51
51
source .venv/bin/activate
52
52
pip install localstack
59
59
echo "Startup complete"
60
60
- name : Run Moto Integration Tests against LocalStack
61
61
env :
62
- LOCALSTACK_API_KEY : ${{ secrets.TEST_LOCALSTACK_API_KEY }}
62
+ LOCALSTACK_AUTH_TOKEN : ${{ secrets.TEST_LOCALSTACK_AUTH_TOKEN }}
63
63
run : |
64
64
source .venv/bin/activate
65
65
python -m pytest --durations=10 --services=${{ inputs.selected-services || 'all' }} --timeout=300 --capture=no --junitxml=target/reports/pytest.xml moto/tests --tb=line
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ def _startup_localstack():
119
119
_localstack_health_check ()
120
120
except :
121
121
os .system (
122
- "DNS_ADDRESS=127.0.0.1 EXTENSION_DEV_MODE=1 DEBUG=1 DISABLE_EVENTS=1 LOCALSTACK_API_KEY=$LOCALSTACK_API_KEY localstack start -d"
122
+ "DNS_ADDRESS=127.0.0.1 EXTENSION_DEV_MODE=1 DEBUG=1 DISABLE_EVENTS=1 LOCALSTACK_AUTH_TOKEN=$LOCALSTACK_AUTH_TOKEN localstack start -d"
123
123
)
124
124
125
125
_localstack_health_check ()
You can’t perform that action at this time.
0 commit comments