@@ -154,16 +154,15 @@ source env/bin/activate
154154
155155### Install Dependencies
156156
157- If ` metadata ` command is not found:
158-
159157``` bash
158+ cd ~ /path/to/OpenMetadata
159+ make install-dev
160+ make generate
161+
160162cd ~ /workspace/OpenMetadata/ingestion
161163
162164# Install OpenMetadata ingestion package
163- pip install -e .
164-
165- # Or install with specific connectors
166- pip install -e ' .[postgres]'
165+ pip install -e . --force-reinstall --no-deps
167166```
168167---
169168
@@ -183,13 +182,6 @@ metadata ingest -c ingestion/tests/unit/metadata/ingestion/owner_config_tests/te
183182- ✅ Should complete without errors
184183- ✅ Child entities inherit parent owner (NOT default owner)
185184- ✅ Check OpenMetadata UI: ` finance_db.accounting.revenue ` should have owner "finance-team"
186-
187- ** Run with verbose logging** (for debugging):
188- ``` bash
189- # From OpenMetadata root directory
190- metadata ingest -c ingestion/tests/unit/metadata/ingestion/owner_config_tests/test-05-inheritance-enabled.yaml --log-level DEBUG
191- ```
192-
193185---
194186
195187### Run All Tests (Using Script)
@@ -236,15 +228,12 @@ Failed: 0
236228** Test Files (in order):**
2372291 . test-01-basic-owner-config.yaml - Basic configuration
2382302 . test-02-fqn-matching.yaml - FQN matching
239- 3 . test-03-multiple-users.yaml - Multiple users ⭐
240- 4 . test-04-validation-errors.yaml - Validation errors ⭐
241- 5 . test-05-inheritance-enabled.yaml - Inheritance enabled ⭐
242- 6 . test-06-inheritance-disabled.yaml - Inheritance disabled ⭐
231+ 3 . test-03-multiple-users.yaml - Multiple users
232+ 4 . test-04-validation-errors.yaml - Validation errors
233+ 5 . test-05-inheritance-enabled.yaml - Inheritance enabled
234+ 6 . test-06-inheritance-disabled.yaml - Inheritance disabled
2432357 . test-07-partial-success.yaml - Partial success
2442368 . test-08-integration-test.yaml - Integration test
245-
246- ** Critical tests** (⭐) verify the two main bug fixes.
247-
248237---
249238
250239## Step 7: Verify Results
0 commit comments