From cd8da17aeff3d9d925b9ebf14578ed6295dc430c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 9 Dec 2025 08:27:41 +0000 Subject: [PATCH 1/3] Initial plan From 979595748ae3e5ec25a0b42615611445dab06969 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 9 Dec 2025 08:29:40 +0000 Subject: [PATCH 2/3] ci: limit cibuildwheel pytest collection to tests directory Co-authored-by: hzhangxyz <11623447+hzhangxyz@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ce3f403..df85c1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,4 +62,4 @@ testpaths = "tests" macos.archs = ["universal2"] windows.archs = ["AMD64"] test-requires = ["pytest", "pytest-cov"] -test-command = ["python -m pytest {project}"] +test-command = ["pytest {project}/tests --cov=apyds"] From da6fc08833ed4b42ac600e41a3f1ff3fef2ff8c3 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 9 Dec 2025 08:34:31 +0000 Subject: [PATCH 3/3] ci: keep python -m prefix in cibuildwheel test command Co-authored-by: hzhangxyz <11623447+hzhangxyz@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index df85c1d..b67c227 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -62,4 +62,4 @@ testpaths = "tests" macos.archs = ["universal2"] windows.archs = ["AMD64"] test-requires = ["pytest", "pytest-cov"] -test-command = ["pytest {project}/tests --cov=apyds"] +test-command = ["python -m pytest {project}/tests --cov=apyds"]