2 Commits

Author SHA1 Message Date
d83594760c remove fail-on-missing 2026-03-28 22:12:56 +00:00
46a85f2904 remove env-include 2026-03-28 08:38:57 +00:00

View File

@@ -26,18 +26,18 @@ requires = ["hatch-dotenv"]
[tool.hatch.env.collectors.dotenv.e]
env-files = [".env"]
fail-on-missing = true
# fail-on-missing = true # breaks publish workflow
[tool.hatch.env.collectors.dotenv.hatch-test]
env-files = [".env"]
fail-on-missing = true
# fail-on-missing = true # breaks publish workflow
[tool.hatch.envs.default]
dependencies = ["pre-commit"]
[tool.hatch.envs.e]
dependencies = ["keyboard"]
env-include = ["OBSWS_*"]
# env-include = ["OBSWS_*"] # causes issues on Windows.
[tool.hatch.envs.e.scripts]
events = "python -m examples.events"
@@ -47,7 +47,7 @@ scene-rotate = "python -m examples.scene_rotate"
[tool.hatch.envs.hatch-test]
randomize = true
env-include = ["OBSWS_*"]
# env-include = ["OBSWS_*"] # causes issues on Windows.
[tool.hatch.envs.hatch-test.scripts]
run = "pytest{env:HATCH_TEST_ARGS:} {args}"