From 65b4142692b97e13a451df27a480206c63206e59 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Sat, 28 Mar 2026 22:09:48 +0000 Subject: [PATCH] remove fail-on-missing, it's breaking the publish workflow. --- pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 61923cb..72a6971 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,13 +42,14 @@ dependencies = ["click-man>=0.5.1"] [tool.hatch.envs.default.scripts] man = "python man/generate.py --output=./man" -[tool.hatch.envs.hatch-test] -randomize = true +[tool.hatch.env] requires = ["hatch-dotenv"] [tool.hatch.env.collectors.dotenv.hatch-test] env-files = [".env", ".test.env"] -fail-on-missing = true + +[tool.hatch.envs.hatch-test] +randomize = true [tool.hatch.envs.types] extra-dependencies = ["mypy>=1.0.0"]