From 2a0ace344197fc2c6d98f32da41751a70e3e9c7f Mon Sep 17 00:00:00 2001 From: StillHammer Date: Sat, 29 Nov 2025 17:07:45 +0800 Subject: [PATCH] fix: Update test_runner.json to point to build/tests/integration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Integration test modules (.so files) are built in build/tests/integration, not tests/integration. Updated config to reflect correct path. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- config/test_runner.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/test_runner.json b/config/test_runner.json index 4472973..f183dde 100644 --- a/config/test_runner.json +++ b/config/test_runner.json @@ -1,6 +1,6 @@ { "enabled": true, - "testDirectory": "tests/integration", + "testDirectory": "build/tests/integration", "globalTimeoutMs": 300000, "stopOnFirstFailure": false, "verboseOutput": true,