Skip to content

Commit 81d2750

Browse files
committed
disable breaking and clean setting
1 parent 174196c commit 81d2750

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

sdk/agentserver/azure-ai-agentserver-core/pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,4 @@ known-first-party = ["azure.ai.agentserver.core"]
6666
combine-as-imports = true
6767

6868
[tool.azure-sdk-build]
69-
verifytypes = false # has unknown dependencies
70-
pyright = false
71-
breaking = false # the pipeline is running on py39
69+
breaking = false # incompatible python version
Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
2-
"reportTypeCommentUsage": true,
3-
"reportMissingImports": false,
4-
"pythonVersion": "3.11",
2+
"reportOptionalMemberAccess": "warning",
3+
"reportArgumentType": "warning",
4+
"reportAttributeAccessIssue": "warning",
5+
"reportMissingImports": "warning",
6+
"reportGeneralTypeIssues": "warning",
7+
"reportReturnType": "warning",
8+
59
"exclude": [
6-
"./samples"
7-
],
8-
"extraPaths": [
10+
"**/azure/ai/agentserver/core/models/**",
11+
"**/samples/**"
912
]
1013
}

0 commit comments

Comments
 (0)