diff --git a/pyproject.toml b/pyproject.toml index b77ad3a..0c065e0 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 @@ -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 -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"