mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-08 17:43:40 +00:00

* use caching to run tests and report coverage * fix test step dep name * try to fix cov fname * add working dir to mv step * update artifact download * fmt * reduce concurrency on ext test --------- Co-authored-by: Leonardo Pinheiro <lpinheiro@microsoft.com>
30 lines
554 B
TOML
30 lines
554 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "autogen-test-utils"
|
|
version = "0.0.0"
|
|
license = {file = "LICENSE-CODE"}
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"autogen-core",
|
|
"pytest",
|
|
"opentelemetry-sdk>=1.27.0",
|
|
]
|
|
|
|
[tool.ruff]
|
|
extend = "../../pyproject.toml"
|
|
include = ["src/**"]
|
|
|
|
[tool.pyright]
|
|
extends = "../../pyproject.toml"
|
|
include = ["src"]
|
|
|
|
[tool.poe]
|
|
include = "../../shared_tasks.toml"
|
|
|
|
[tool.poe.tasks]
|
|
mypy = "mypy --config-file $POE_ROOT/../../pyproject.toml src"
|
|
test = "true"
|