Restructure output directories to output/#25
Merged
Conversation
Samlar all genererad output under output/ med tydlig struktur: - output/md/ - Markdown-filer (tidigare SFS/) - output/html/ - HTML-filer ## Ändringar ### Konfiguration - .gitignore: Ta bort oanvänd sfs-output/, output/ täcker allt - pyproject.toml: Lägg till sfs_docs/* och output/* i coverage omit ### Dokumentation - README.md: Uppdatera exempel från --output SFS → --output output/md ### GitHub Workflows (4 filer) - fetch-sfs-workflow.yml: SFS → output/md, git add ändrat - html-export-workflow.yml: SFS → output/html, aws s3 sync uppdaterat - testdocs-workflow.yml: SFS → output/md - upcoming-changes-workflow.yml: SFS/ → output/md/ i temporal scripts ## Fördelar - Tydligare separation mellan input (sfs_docs/) och output (output/) - All genererad data under samma root-katalog - Enklare att rensa: rm -rf output/ - output/ redan ignorerad i .gitignore - undviker oavsiktliga commits 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
data/ ska innehålla källdata och konfiguration, inte genererad output. kommande.yaml genereras från markdown-filer och är därför output. Ändringar: - temporal/upcoming_changes.py: UPCOMING_CHANGES_FILE_PATH → output/kommande.yaml - .gitignore: Ta bort data/kommande.yaml (täcks av output/) - upcoming-changes-workflow.yml: git add output/kommande.yaml
Add improvements from feature/improved-pyproject: - Enable branch coverage (branch = true) - Add abstractmethod to exclude_lines for better coverage reporting - Keep output/* omit (covers output/md, output/html, etc.)
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.
Sammanfattning
Samlar all genererad output under
output/med tydlig struktur för bättre organisation och för att undvika oavsiktliga commits av genererade filer.Ny katalogstruktur
Ändringar
Konfiguration
.gitignore: Rensat bort oanvändsfs-output/,output/täcker alltpyproject.toml: Lagt tillsfs_docs/*ochoutput/*i coverage omitDokumentation
README.md: Uppdaterat alla exempel från--output SFS→--output output/mdGitHub Workflows (4 filer)
fetch-sfs-workflow.yml: Ändrat output och git add-kommandohtml-export-workflow.yml: Ändrat output och AWS S3 sync-sökvägtestdocs-workflow.yml: Ändrat output-katalogupcoming-changes-workflow.yml: Uppdaterat sökvägar för temporal scriptsFördelar
sfs_docs/) och output (output/)rm -rf output/rensar all genererad dataoutput/redan ignorerad i .gitignore → undviker oavsiktliga commitsRisker & Breaking Changes
SFS/katalogen måste uppdatera sina scripts/kommandon.Test plan
python sfs_processor.py --input sfs_json --output output/md --formats md-markersoutput/md/output/html/🤖 Generated with Claude Code