Skip to content
Merged
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 tests/cli/test_ci_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def test_setup_does_not_partially_write_generated_files_when_target_exists(
)

assert result.exit_code == 1
assert "pass --force to overwrite" in result.output
assert "pass --force to overwrite" in " ".join(result.output.split())
assert not (tmp_path / ".github/workflows/basic-memory.yml").exists()
assert not (tmp_path / ".github/basic-memory/memory-ci-capture.md").exists()
mock_seed.assert_not_awaited()
Expand Down
Loading