|
1 |
| -[](https://img.shields.io/badge/Python-3.9-green) |
| 1 | +[](https://img.shields.io/badge/Python-3.13-green) |
2 | 2 | [](https://img.shields.io/badge/AWS-SQS-blueviolet)
|
3 | 3 | [](https://img.shields.io/badge/Test-Integration-yellow)
|
4 | 4 |
|
@@ -60,9 +60,9 @@ The SAM CLI extends the AWS CLI that adds functionality for building and testing
|
60 | 60 | To use the SAM CLI, you need the following tools.
|
61 | 61 |
|
62 | 62 | * SAM CLI - [Install the SAM CLI](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-install.html)
|
63 |
| -* Python 3.9 and above - [Install Python 3.9](https://www.python.org/downloads/) |
| 63 | +* Python 3.13 and above - [Install Python 3.13](https://www.python.org/downloads/) |
64 | 64 |
|
65 |
| - In case you are using AWS cloud9, currently the default Python version is 3.7. you can check [here](https://repost.aws/questions/QU14iutbqtSsm1gHwQwt02pA/upgrade-to-python-3-9-on-cloud-9) how to update it. |
| 65 | + In case you are using AWS cloud9, you may need to upgrade to Python 3.13. You can check [here](https://repost.aws/questions/QU14iutbqtSsm1gHwQwt02pA/upgrade-to-python-3-9-on-cloud-9) for guidance on upgrading Python versions. |
66 | 66 |
|
67 | 67 |
|
68 | 68 |
|
@@ -112,10 +112,10 @@ To run the integration test, create the environment variable "AWS_SAM_STACK_NAME
|
112 | 112 | export AWS_SAM_STACK_NAME=<stack-name>
|
113 | 113 | export AWS_DEFAULT_REGION=<region-of-test>
|
114 | 114 | pip3 install virtualenv
|
115 |
| -python3 -m venv venv |
| 115 | +python3 -m virtualenv venv |
116 | 116 | source venv/bin/activate
|
117 | 117 | pip3 install -r tests/requirements.txt
|
118 |
| -python3 -m pytest -s tests/integration -v |
| 118 | +python3 -m pytest -s tests/integration -v |
119 | 119 |
|
120 | 120 | # For INFO debug log you can run: python -m pytest -s tests/integration --log-cli-level=20
|
121 | 121 | ```
|
|
0 commit comments