From c44c5164c95b5bbddb10e69b05839451508512fc Mon Sep 17 00:00:00 2001 From: sayonfortify Date: Thu, 25 Jun 2026 01:26:04 +0530 Subject: [PATCH] docs(tests): use repo-relative path in test setup snippets The Local Setup blocks in tests/README.md and tests/openai/README.md hardcoded a personal absolute path under /Users/.../fr-meta/ocelle-py, which leaked a local machine layout + the private monorepo name and was wrong for anyone cloning this repo standalone. Replace with a repo-relative note. Docs-only, 1 line each. --- tests/README.md | 2 +- tests/openai/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/README.md b/tests/README.md index ae18686..f188fb3 100644 --- a/tests/README.md +++ b/tests/README.md @@ -69,7 +69,7 @@ Use these layers intentionally: ## Local Setup ```bash -cd "/Users/arnavdutta/FortifyRoot - Meta/fr-meta/ocelle-py" +# from the ocelle-py repo root poetry install --with test ``` diff --git a/tests/openai/README.md b/tests/openai/README.md index fc16697..9400785 100644 --- a/tests/openai/README.md +++ b/tests/openai/README.md @@ -63,7 +63,7 @@ Reason: both tests exercise the same HTTP request shape and only validate differ ## Local Setup ```bash -cd "/Users/arnavdutta/FortifyRoot - Meta/fr-meta/ocelle-py" +# from the ocelle-py repo root poetry install --with test ```