Skip to content

Commit

Permalink
fix device farm CI build with boto3 (aws#990)
Browse files Browse the repository at this point in the history
  • Loading branch information
samuel40791765 authored and torben-hansen committed May 5, 2023
1 parent aadc0e7 commit d838b6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/ci/devicefarm_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"poolArn": DEVICEFARM_DEVICE_POOL,
}

client = boto3.client('devicefarm')
client = boto3.client('devicefarm', region_name=AWS_REGION)

unique = config['namePrefix']
aws_region = config['awsRegion']
Expand Down
5 changes: 3 additions & 2 deletions tests/ci/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@
# A formatter for Python code.
"yapf==0.30.0",
# Introduced by benchmark framework.
"boto3==1.18.11",
"boto3==1.26.126",
# Introduced by Android Device Farm CI.
"requests",
"arnparse==0.0.2"
"arnparse==0.0.2",
"urllib3==1.25.4"
],

python_requires=">=3.6",
Expand Down

0 comments on commit d838b6e

Please sign in to comment.