From ab4348b07568ef4e38fceb4a655c0a0fbe242994 Mon Sep 17 00:00:00 2001 From: Matthew Carroll <28577806+MJC598@users.noreply.github.com> Date: Thu, 30 Jul 2026 09:00:47 -0400 Subject: [PATCH 1/3] Converting pytest command to double quotes because windows is annoying --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b77ad3a..ec186f3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -245,7 +245,7 @@ build-frontend = "build[uv]" # Test Step Details test-groups = ["test"] test-sources = ["pyproject.toml", "tests"] -test-command = "python -m pytest tests -m 'smoke or unit or integration'" +test-command = "python -m pytest tests -m \"smoke or unit or integration\"" test-skip = [ "cp31*-musllinux_*", # Threading test crashes on musllinux "cp313*", # polars-runtime-32 has issues with abi3 on 3.13 and above From f12feb5fe9865f95e00dc9215a0988297021651a Mon Sep 17 00:00:00 2001 From: Matthew Carroll <28577806+MJC598@users.noreply.github.com> Date: Thu, 30 Jul 2026 09:48:34 -0400 Subject: [PATCH 2/3] Changing the test-command for windows specific --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ec186f3..117e726 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -259,7 +259,7 @@ environment.CMAKE_BUILD_PARALLEL_LEVEL = "4" [[tool.cibuildwheel.overrides]] select = ["cp3*-win_arm64"] inherit.environment = "append" -test-command = "python -m pytest -n 1 --benchmark-disable tests" +test-command = "python -m pytest tests -n 1 -m \"smoke or unit or integration\"" environment.OMP_NUM_THREADS = "1" environment.OPENBLAS_NUM_THREADS = "1" environment.MKL_NUM_THREADS = "1" From b9adc9c888fff3dcfdb6a66e1311e10affcbdc58 Mon Sep 17 00:00:00 2001 From: Matthew Carroll <28577806+MJC598@users.noreply.github.com> Date: Thu, 30 Jul 2026 10:04:04 -0400 Subject: [PATCH 3/3] Windows please --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 117e726..0c065e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -259,7 +259,7 @@ environment.CMAKE_BUILD_PARALLEL_LEVEL = "4" [[tool.cibuildwheel.overrides]] select = ["cp3*-win_arm64"] inherit.environment = "append" -test-command = "python -m pytest tests -n 1 -m \"smoke or unit or integration\"" +test-command = "python -m pytest -n 1 --benchmark-disable tests -m \"smoke or unit or integration\"" environment.OMP_NUM_THREADS = "1" environment.OPENBLAS_NUM_THREADS = "1" environment.MKL_NUM_THREADS = "1"