test_skill

Installation
SKILL.md

Odoo Test Failure Resolution Rules

This skill provides mandatory rules for handling test failures during AI-assisted testing.

๐Ÿงช AI TEST FAILURE RESOLUTION RULES

When running Odoo tests, analyze any failures and apply exactly one of the three rules below โ€” nothing else:

  1. RULE 1 โ€” Custom test fails: The custom module code is broken (e.g. upgrade logic did not preserve the expected workflow). โ†’ Fix the custom module CODE so the workflow is correct again. Never weaken or skip the test.

  2. RULE 2 โ€” Standard Odoo test fails because of our custom code: Our changes altered a workflow or model that a standard test relied on. โ†’ Monkey-patch the standard test from within the custom module so it aligns with the new workflow. Never modify standard Odoo files. Never make the test trivially pass by removing assertions.

  3. RULE 3 โ€” Standard Odoo test fails for an unrelated reason: โ†’ Do nothing. Skip it and move on.

Installs
10
First Seen
Aug 27, 2026
test_skill โ€” odoo-ps/ps-ai-skills