From: sidey79 <7968127+sidey79@users.noreply.github.com> Date: Wed, 27 Aug 2025 22:23:23 +0000 (+0200) Subject: Development: allow devcontainer pytest to find tests (#10671) X-Git-Tag: v2.18.3~1^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e0f5dff95c1b0aefaebcb7c8fed110ee4e4eba8;p=thirdparty%2Fpaperless-ngx.git 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> --- diff --git a/.devcontainer/vscode/settings.json b/.devcontainer/vscode/settings.json index 86c718cad9..bd8251a4a3 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" }