From 4e0f5dff95c1b0aefaebcb7c8fed110ee4e4eba8 Mon Sep 17 00:00:00 2001 From: sidey79 <7968127+sidey79@users.noreply.github.com> Date: Thu, 28 Aug 2025 00:23:23 +0200 Subject: [PATCH] Development: allow devcontainer pytest to find tests (#10671) * Fix:[settings.json]: update pytest configuration in VSCode settings * chore[pckage.json]: Add pnmp as packagemanager * Chore[package.json]: revert --------- Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com> --- .devcontainer/vscode/settings.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.devcontainer/vscode/settings.json b/.devcontainer/vscode/settings.json index 86c718cad..bd8251a4a 100644 --- a/.devcontainer/vscode/settings.json +++ b/.devcontainer/vscode/settings.json @@ -1,11 +1,10 @@ { - "python.testing.pytestArgs": [ - "src" - ], + "python.testing.pytestArgs": [], "python.testing.unittestEnabled": false, "python.testing.pytestEnabled": true, "files.watcherExclude": { "**/.venv/**": true, "**/pytest_cache/**": true - } + }, + "python.testing.cwd": "${workspaceFolder}/src" }