From 422f149c527d637cdbb83a41302e2d6d50d0ce3c Mon Sep 17 00:00:00 2001 From: rugk Date: Mon, 23 Feb 2026 13:40:10 +0000 Subject: [PATCH] feat(devcontainer): try provide --bootstrap arg and use global phpunit --- .vscode/settings.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 31807d10..08271210 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,8 +2,11 @@ "files.associations": { "**/cfg/conf*.php": "ini" }, - "phpunit.phpunit": "${workspaceFolder}/vendor/bin/phpunit", + "phpunit.phpunit": "${userHome}/.composer/vendor/bin/phpunit", "phpunit.args": [ - "--configuration '${workspaceFolder}/tst/phpunit.xml'" + "--configuration", + "${workspaceFolder}/tst/phpunit.xml", + "--bootstrap", + "${workspaceFolder}/tst/Bootstrap.php" ] }