File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -95,10 +95,8 @@ tests_dir = "tests/"
9595
9696[tool .ruff ]
9797target-version = " py311"
98- line-length = 100
9998
10099[tool .ruff .lint ]
101- select = [" E" , " F" , " I" ]
102100ignore = [" E501" ]
103101
104102[tool .setuptools_scm ]
Original file line number Diff line number Diff line change @@ -92,9 +92,9 @@ def test_build_record_resolves_path_and_all_six_claims():
9292 "project_summary_present" : True , # one set True to prove per-field mapping
9393 },
9494 }
95- record = build_record (project , "/Users/d/ Projects" )
95+ record = build_record (project , os . path . expanduser ( "~/ Projects") )
9696
97- assert record ["abs_path" ] == "/Users/d/ Projects/Fun:GamePrjs/BattleGrid"
97+ assert record ["abs_path" ] == os . path . expanduser ( "~/ Projects/Fun:GamePrjs/BattleGrid")
9898 assert record ["primary_file_name" ] == "AGENTS.md" # no CLAUDE.md → AGENTS.md
9999 assert record ["context_files" ] == ["AGENTS.md" , "README.md" ]
100100 assert record ["project_key" ] == "Fun:GamePrjs/BattleGrid"
You can’t perform that action at this time.
0 commit comments