Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/web-smoke.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion tests/test_encode_queue_recovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down