fix(report): write run data to project-local target/piano/runs/#77
Merged
rocketman-code merged 1 commit intomainfrom Feb 24, 2026
Merged
fix(report): write run data to project-local target/piano/runs/#77rocketman-code merged 1 commit intomainfrom
rocketman-code merged 1 commit intomainfrom
Conversation
This was referenced Feb 24, 2026
1bcbd42 to
c2aa80b
Compare
Add shutdown_to(dir) to the runtime that writes to a specified directory. The CLI now injects shutdown_to with the project's target/piano/runs/ path instead of shutdown(), making run data project-scoped by default. piano report and piano tag check ./target/piano/runs/ first, falling back to ~/.piano/runs/ for backward compatibility with existing global runs. PIANO_RUNS_DIR env var still takes priority in both shutdown and shutdown_to for testing and user overrides. Closes #71
c2aa80b to
fdf391a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
shutdown_to(dir)to the runtime for writing to a specified directoryshutdown_towith<project>/target/piano/runs/instead ofshutdown()piano reportandpiano tagcheck./target/piano/runs/first, falling back to~/.piano/runs/PIANO_RUNS_DIRenv var still takes priority for testing and user overridesBefore: all run data went to global
~/.piano/runs/regardless of project.After: run data is project-local in
target/piano/runs/, eliminating cross-project confusion.Closes #71