From be30ab90b2e21420696be35a8b3dd542333d2630 Mon Sep 17 00:00:00 2001 From: Kunal Vaishnavi Date: Tue, 9 Jun 2026 13:11:31 -0700 Subject: [PATCH 1/2] Add README file for testing --- test/README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 test/README.md diff --git a/test/README.md b/test/README.md new file mode 100644 index 0000000000..fb6dcbc6b6 --- /dev/null +++ b/test/README.md @@ -0,0 +1,14 @@ +# ONNX Runtime GenAI Test Folder Structure + +This directory contains assets, scripts, and definitions used by the test suite. + +## Layout + +- `test/audios/*` contains all audio files used for testing. +- `test/images/*` contains all image files used for testing. +- `test/models/model_name/*` contains uploaded assets for `model_name` such as `model.onnx`, `genai_config.json`, `tokenizer.json`, and related files. These are already-created models stored in the repo. +- `test/python/*` contains all Python scripts used for testing. + - `test/python/builder/*` contains Python scripts used to validate the model builder. + - `test/python/create/*` contains Python scripts used to create ONNX models. Scripts follow the `create_*.py` naming format. + - `test/python/models/*` contains Python scripts used to test ONNX models. Scripts follow the `test_*.py` naming format. +- `test/tool-definitions/*` contains all tool definitions used for testing. From a1975db750193139b14b8fc08dea0f3bbd6b116b Mon Sep 17 00:00:00 2001 From: Kunal Vaishnavi Date: Tue, 9 Jun 2026 14:30:42 -0700 Subject: [PATCH 2/2] Add integration section --- test/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/test/README.md b/test/README.md index fb6dcbc6b6..38e85bfb73 100644 --- a/test/README.md +++ b/test/README.md @@ -10,5 +10,6 @@ This directory contains assets, scripts, and definitions used by the test suite. - `test/python/*` contains all Python scripts used for testing. - `test/python/builder/*` contains Python scripts used to validate the model builder. - `test/python/create/*` contains Python scripts used to create ONNX models. Scripts follow the `create_*.py` naming format. + - `test/python/integration/*` contains Python scripts used to run integrating testing on Foundry Local models. - `test/python/models/*` contains Python scripts used to test ONNX models. Scripts follow the `test_*.py` naming format. - `test/tool-definitions/*` contains all tool definitions used for testing.