docs: preserve us-cpa workspace virtualenv on sync

This commit is contained in:
Stefano Fiorini
2026-03-15 04:05:29 -05:00
parent 31ed267027
commit 12838f7449
3 changed files with 8 additions and 2 deletions

View File

@@ -52,11 +52,13 @@ class UsCpaCliSmokeTests(unittest.TestCase):
self.assertIn(".venv/bin/python", readme)
self.assertIn("python3 -m ensurepip --upgrade", readme)
self.assertIn("python3 -m pip install --upgrade pip setuptools wheel", readme)
self.assertIn("--exclude '.venv'", readme)
self.assertNotIn("/Users/stefano/", readme)
self.assertIn("OpenClaw installation", operator_doc)
self.assertIn("rsync -a --delete", operator_doc)
self.assertIn("python3 -m ensurepip --upgrade", operator_doc)
self.assertIn("python3 -m pip install --upgrade pip setuptools wheel", operator_doc)
self.assertIn("--exclude '.venv'", operator_doc)
self.assertIn("~/", operator_doc)
self.assertNotIn("/Users/stefano/", operator_doc)
self.assertIn("~/.openclaw/workspace/skills/us-cpa/scripts/us-cpa", skill_doc)