Skip to content

Commit 6e6b7cb

Browse files
committed
Fix unit test and integration test
1 parent 19fb262 commit 6e6b7cb

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

sample-apps/flask/requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
boto3
2-
certifi
3-
chardet
4-
Flask
5-
idna
6-
requests
7-
urllib3
1+
boto3==1.34.26
2+
certifi==2023.11.17
3+
chardet==5.2.0
4+
Flask==2.3.3
5+
idna==3.6
6+
requests==2.31.0
7+
urllib3==1.26.18
88
Werkzeug==3.0.1
99
flask-sqlalchemy==2.5.1
1010
SQLAlchemy==1.4

terraform/eb.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ resource "aws_elastic_beanstalk_application_version" "eb_app_version" {
5555
resource "aws_elastic_beanstalk_environment" "eb_env" {
5656
name = "${var.resource_prefix}-EB-App-Env"
5757
application = aws_elastic_beanstalk_application.eb_app.name
58-
solution_stack_name = "64bit Amazon Linux 2 v3.1.3 running Python 3.7"
58+
solution_stack_name = "64bit Amazon Linux 2 v3.5.10 running Python 3.8"
5959
tier = "WebServer"
6060
version_label = aws_elastic_beanstalk_application_version.eb_app_version.name
6161
cname_prefix = "${var.resource_prefix}-Eb-app-env"

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ deps =
5656
wrapt
5757

5858
; Python 3.5+ only deps
59-
py{37,38,39,310,311,312}: pytest-asyncio
59+
py{37,38,39,310,311,312}: pytest-asyncio == 0.21.1
6060

6161
; For pkg_resources
6262
py{37,38,39,310,311,312}: setuptools
@@ -92,7 +92,7 @@ deps =
9292
ext-django-4: Django >=4.0,<5.0
9393
ext-django: django-fake-model
9494

95-
py{37,38,39,310,311,312}-ext-pynamodb: pynamodb >=3.3.1
95+
py{37,38,39,310,311,312}-ext-pynamodb: pynamodb >=3.3.1,<6.0.0
9696

9797
ext-psycopg2: psycopg2
9898
ext-psycopg2: testing.postgresql

0 commit comments

Comments
 (0)