From 43b52ca3c53241e97437c36f069324a4e9e755f2 Mon Sep 17 00:00:00 2001 From: Alex Kaszynski Date: Sat, 24 Feb 2024 18:02:25 -0700 Subject: [PATCH] use correct test requirements file --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 958a735..4ee3ddc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ filterwarnings = [ [tool.cibuildwheel] archs = ["auto64"] # 64-bit only skip = "pp* *musllinux* cp37-*" # disable PyPy, musl-based wheels, and Python < 3.8 -before-test = "pip install -r requirements.txt" +before-test = "pip install -r requirements_test.txt" test-command = "pytest {project}/tests" [tool.cibuildwheel.macos]