mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-19 15:01:52 +00:00

`poe check` fails on main on Windows due to a combination line ending mismatches, Unix-specific commands, and Windows-specific `asyncio` behavior. This PR attempts to fix this (so that `poe check` on a freshly-pulled `main` passes on Windows 11.)
26 lines
588 B
TOML
26 lines
588 B
TOML
[build-system]
|
|
build-backend="hatchling.build"
|
|
requires =[ "hatchling" ]
|
|
|
|
[project]
|
|
dependencies =[ "autogen-core", "opentelemetry-sdk>=1.27.0", "pytest" ]
|
|
license ={ file="LICENSE-CODE" }
|
|
name ="autogen-test-utils"
|
|
requires-python=">=3.10"
|
|
version ="0.0.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="python -c \"import sys; sys.exit(0)\""
|