This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push:
new 4224325ac Add agent instructions for validating changes in
axiom-testsuite
4224325ac is described below
commit 4224325ac987e7276191e013f8cc0172d9fc3368
Author: Copilot <[email protected]>
AuthorDate: Sat May 16 19:30:00 2026 +0100
Add agent instructions for validating changes in axiom-testsuite
Co-authored-by: Andreas Veithen-Knowles <[email protected]>
---
testing/axiom-testsuite/AGENTS.md | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/testing/axiom-testsuite/AGENTS.md
b/testing/axiom-testsuite/AGENTS.md
new file mode 100644
index 000000000..f715b48c3
--- /dev/null
+++ b/testing/axiom-testsuite/AGENTS.md
@@ -0,0 +1,13 @@
+# AI Agent Instructions
+
+## Validating changes to axiom-testsuite
+
+`testing/axiom-testsuite` contains abstract test cases that are executed
against the Axiom implementations. The module has no tests of its own; its
tests only run as part of `implementations/axiom-impl` (LLOM) and
`implementations/axiom-dom` (DOOM).
+
+**After every change to `testing/axiom-testsuite`, you MUST run the tests for
both implementations:**
+
+```
+./mvnw -pl
testing/axiom-testsuite,implementations/axiom-impl,implementations/axiom-dom
-am test
+```
+
+Do not consider a change to `axiom-testsuite` complete until this command
passes without failures.