Skip to content

Commit e5eea5c

Browse files
authored
Update python-until-0717.md
1 parent 8bb25a4 commit e5eea5c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

QA/for_ci/python-until-0717.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,20 @@ C:\Users\v-dharmarajv\AppData\Local\Programs\Python\Python313\Lib\site-packages\
1616
## answer
1717
You're encountering an SSL certificate error when running live tests for async APIs, specifically when connecting to https://localhost:5001. This is the test proxy endpoint, and the error is likely due to certificate verification failing. Although the same code works for another team member, the issue may be caused by environment variables — either missing or incorrectly set.
1818

19-
To run live tests, make sure AZURE_TEST_RUN_LIVE is set to "true". If you also want to record, avoid setting AZURE_SKIP_LIVE_RECORDING. As a workaround for the SSL issue, set the environment variable PROXY_URL to http://localhost:5000 instead of using HTTPS. This bypasses certificate validation and resolves the issue.
19+
To run live tests, make sure AZURE_TEST_RUN_LIVE is set to "true". If you also want to record, avoid setting AZURE_SKIP_LIVE_RECORDING. As a workaround for the SSL issue, set the environment variable PROXY_URL to http://localhost:5000 instead of using HTTPS. This bypasses certificate validation and resolves the issue.
20+
21+
# release pipeline link for Python SDK `azure-mgmt-resource-bicep`
22+
23+
## question
24+
25+
How to find the specific release pipeline link of Python SDK `azure-mgmt-resource-bicep` and it would be nicer if someone can provide me the link directly.
26+
27+
## answer
28+
29+
To find the specific release pipeline link for the Python SDK `azure-mgmt-resource-bicep`, you typically need to locate the corresponding pipeline in Azure DevOps under the internal Azure SDK project. The naming convention for the pipeline is usually `python - <servicedir>`, where `<servicedir>` matches the service directory (in this case, likely resource or resource-bicep).
30+
31+
Here is the general process:
32+
1. Go to [Azure DevOps - Azure SDK Internal Project](https://dev.azure.com/azure-sdk/internal/_build)
33+
2. Search for the pipeline named `python - resource` or similar, as the pipeline is named according to the service directory for management SDKs.
34+
3. The direct link format for a service pipeline is: `https://dev.azure.com/azure-sdk/internal/_build?definitionId=<ID>&_a=summary`
35+
- You can search for `resource` in the pipelines list to locate the exact one.

0 commit comments

Comments
 (0)