🌐 AI搜索 & 代理 主页
Skip to content

Commit fd9b9cf

Browse files
committed
Adjustments in limits of Automation Builds scenario
1 parent 6893ae5 commit fd9b9cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/get-automation-builds/test_async_automation_builds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
api_key = os.getenv('LT_ACCESS_KEY')
1616

1717
async def get_lambdatest_all_builds(session):
18-
url = f"https://{user_name}:{api_key}@api.lambdatest.com/automation/api/v1/builds?limit=2000"
18+
url = f"https://{user_name}:{api_key}@api.lambdatest.com/automation/api/v1/builds?limit=50"
1919
headers = {"accept": "application/json"}
2020
async with session.get(url, headers=headers) as response:
2121
if response.status == 200:

tests/get-automation-builds/test_sync_automation_builds.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
start_time = time.time()
1818

1919
def get_lambdatest_all_builds():
20-
url = f"https://{user_name}:{api_key}@api.lambdatest.com/automation/api/v1/builds?limit=1000"
20+
url = f"https://{user_name}:{api_key}@api.lambdatest.com/automation/api/v1/builds?limit=50"
2121
headers = {"accept": "application/json"}
2222

2323
# SSL context for HTTPS request

0 commit comments

Comments
 (0)