Skip to content

Commit 9fe09c1

Browse files
committed
feat: add AgentEvaluator
1 parent fe7a3c2 commit 9fe09c1

61 files changed

Lines changed: 3489 additions & 1191 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath"
3-
version = "2.1.26"
3+
version = "2.1.27"
44
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.10"
@@ -10,7 +10,7 @@ dependencies = [
1010
"opentelemetry-sdk>=1.31.1",
1111
"pydantic>=2.11.1",
1212
"python-dotenv>=1.0.1",
13-
"tenacity>=9.0.0",
13+
"tenacity>=8.0.0",
1414
"tomli>=2.2.1",
1515
"pathlib>=1.0.1",
1616
"rich>=13.0.0",
@@ -101,7 +101,7 @@ line-ending = "auto"
101101

102102
[tool.mypy]
103103
plugins = ["pydantic.mypy"]
104-
exclude = ["samples/.*"]
104+
exclude = ["samples/.*", "tests/.*"]
105105

106106
follow_imports = "silent"
107107
warn_redundant_casts = true
@@ -117,12 +117,12 @@ init_forbid_extra = true
117117
init_typed = true
118118
warn_required_dynamic_aliases = true
119119

120-
[tool.pytest.ini_options]
121-
testpaths = ["tests"]
122-
python_files = "test_*.py"
123-
addopts = "-ra -q --cov"
124-
asyncio_default_fixture_loop_scope = "function"
125-
asyncio_mode = "auto"
120+
#[tool.pytest.ini_options]
121+
#testpaths = ["tests"]
122+
#python_files = "test_*.py"
123+
#addopts = "-ra -q --cov"
124+
#asyncio_default_fixture_loop_scope = "function"
125+
#asyncio_mode = "auto"
126126

127127
[tool.coverage.report]
128128
show_missing = true

0 commit comments

Comments
 (0)