Nissa Seru 0276aac8fb
Fix poe check on Windows (#5942)
`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.)
2025-03-14 11:44:38 -07:00

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)\""