docs: use home-relative us-cpa install paths

This commit is contained in:
Stefano Fiorini
2026-03-15 03:35:24 -05:00
parent 9f650faf88
commit fdfc9f0996
3 changed files with 9 additions and 6 deletions

View File

@@ -48,8 +48,11 @@ class UsCpaCliSmokeTests(unittest.TestCase):
self.assertIn("OpenClaw installation", readme)
self.assertIn("~/.openclaw/workspace/skills/us-cpa", readme)
self.assertIn(".venv/bin/python", readme)
self.assertNotIn("/Users/stefano/", readme)
self.assertIn("OpenClaw installation", operator_doc)
self.assertIn("rsync -a --delete", operator_doc)
self.assertIn("~/", operator_doc)
self.assertNotIn("/Users/stefano/", operator_doc)
self.assertIn("~/.openclaw/workspace/skills/us-cpa/scripts/us-cpa", skill_doc)
def test_wrapper_prefers_local_virtualenv_python(self) -> None: