From 40d7ba95834990d3fb5c5c84018cab8123f8df28 Mon Sep 17 00:00:00 2001 From: tsukumi Date: Thu, 1 Aug 2024 20:31:59 +0900 Subject: [PATCH] Fix: tests fail because scipy is not installed in the test environment --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 45fbbcb..9ab0564 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ exclude = [".git", ".gitignore", ".gitattributes"] packages = ["style_bert_vits2"] [tool.hatch.envs.test] -dependencies = ["coverage[toml]>=6.5", "pytest"] +dependencies = ["coverage[toml]>=6.5", "pytest", "scipy"] [tool.hatch.envs.test.scripts] # Usage: `hatch run test:test` test = "pytest {args:tests}"