diff --git a/config/web-smoke.toml b/config/web-smoke.toml index 547a93f..97a75aa 100644 --- a/config/web-smoke.toml +++ b/config/web-smoke.toml @@ -6,7 +6,7 @@ review_dir = "state/web-smoke/review" runtime_settings_path = "state/web-smoke/runtime.json" [state.cleanup] -transient_artifact_retention_days = 1 +transient_artifact_retention_days = 14 orphan_temp_retention_minutes = 10 periodic_sweep_minutes = 60 diff --git a/tests/test_encode_queue_recovery.py b/tests/test_encode_queue_recovery.py index 1c8fc1b..17c68ee 100644 --- a/tests/test_encode_queue_recovery.py +++ b/tests/test_encode_queue_recovery.py @@ -4152,7 +4152,7 @@ def test_folder_cards_fall_back_to_codec_history_when_folder_history_missing(sel self.assertEqual(matching_cards[0].estimated_savings_bytes, 1024 * 1024 * 1024) def test_project_env_loader_sets_defaults_without_overriding_shell_env(self) -> None: - env_path = Path.home() / "Developer" / "claude-local-machine" / "projects" / "media-encoding" / ".env" + env_path = self.root / "projects" / "media-encoding" / ".env" with patch.object(web_app, "DEFAULT_CONFIG_PATH", env_path.parent / "config" / "defaults.toml"): with patch.object(Path, "exists", autospec=True) as exists_mock: exists_mock.side_effect = lambda path: path == env_path